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

代码题(4)— 反转链表

时间:2018-06-20 22:36:45      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:int   ptr   struct   sel   题目   while   class   strong   return   

题目:反转一个单链表。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
            val(x), next(NULL) {
    }
};*/
class Solution {
public:
    ListNode* ReverseList(ListNode* pHead) {
        if(pHead == nullptr || pHead->next == nullptr)
            return pHead;
        ListNode* cur = pHead;
        ListNode *pre = nullptr, *nex = nullptr;
        while(cur != nullptr)
        {
            nex = cur->next;
            cur->next = pre;
            pre = cur;
            cur = nex;
            
        }
        return pre;
    }
};

 

代码题(4)— 反转链表

标签:int   ptr   struct   sel   题目   while   class   strong   return   

原文地址:https://www.cnblogs.com/eilearn/p/9206241.html

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