Untitled
unknown
plain_text
a year ago
673 B
10
Indexable
/**
* 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) {
cin.tie(nullptr)->sync_with_stdio(0);
ListNode* preNode = nullptr;
while (head != nullptr) {
ListNode* tempNode = head->next;
head->next = preNode;
preNode = head;
head = tempNode;
}
return preNode;
}
};Editor is loading...
Leave a Comment