Open rocksc30 opened 1 year ago
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* reverseList(ListNode* head) {
// 1 -> 2 -> 3
if(!head || head->next == nullptr)
return head;
ListNode * p = head->next;
ListNode * tail = reverseList(head->next);
head->next = nullptr;
p -> next = head;
return tail;
}
};