码迷,mamicode.com
首页 > 其他好文 > 详细

剑指offer 反转链表

时间:2018-08-25 20:11:24      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:turn   pre   eve   反转   next   sel   ext   public   class   

class Solution {
public:
    ListNode* ReverseList(ListNode* pHead) {
        ListNode* prev = nullptr;
        ListNode* curr = pHead;
        while ( curr != nullptr ){
            curr = pHead->next;
            pHead->next = prev;
            prev = pHead;
            pHead = curr;
        }
        return prev;
    }
};

剑指offer 反转链表

标签:turn   pre   eve   反转   next   sel   ext   public   class   

原文地址:https://www.cnblogs.com/theodoric008/p/9535024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!