004.使用循环逆转链表 LeetCode206. 反转链表

不利用栈将链表翻转 时间复杂度O(n)

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode* reverseList(ListNode* head) {
        ListNode* pre=NULL;
        ListNode* cur=head;
        while(cur!=NULL)
        {
            ListNode* next=cur->next;

            cur->next=pre;
            pre=cur;
            cur=next;
        }
        return pre;
    }
};

猜你喜欢

转载自blog.csdn.net/dosdiosas_/article/details/106222776