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

剑指offer---反转链表

时间:2017-08-06 17:59:42      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:nod   code   ext   val   null   offer   反转   span   剑指offer   

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
            val(x), next(NULL) {
    }
};*/
class Solution {
public:
    ListNode* ReverseList(ListNode* pHead)
    {
        if(pHead==NULL)
        {
            return NULL;
        }
        
        ListNode* cur=NULL;
        ListNode* pre=NULL;
        ListNode* nex=NULL;
        
        cur=pHead;
        nex=cur->next;
        
        while(1)
        {
            
            if(nex==NULL)
            {
                break;
            }
            
            pre=cur;
            cur=nex;
            nex=nex->next;
            nex->next=cur;
        }
        
        return cur;
    }
};

 

剑指offer---反转链表

标签:nod   code   ext   val   null   offer   反转   span   剑指offer   

原文地址:http://www.cnblogs.com/159269lzm/p/7295204.html

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