Untitled

mail@pastecode.io avatar
unknown
plain_text
5 months ago
673 B
3
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;
    }
};
Leave a Comment