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

翻转链表

时间:2017-05-02 14:01:25      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:int   tno   text   init   lis   strong   panel   info   desc   

翻转链表 

翻转一个链表

样例

给出一个链表1->2->3->null,这个翻转后的链表为3->2->1->null

挑战 

在原地一次翻转完成

标签 
 
 1 /**
 2  * Definition of ListNode
 3  * 
 4  * class ListNode {
 5  * public:
 6  *     int val;
 7  *     ListNode *next;
 8  * 
 9  *     ListNode(int val) {
10  *         this->val = val;
11  *         this->next = NULL;
12  *     }
13  * }
14  */
15 class Solution {
16 public:
17     /**
18      * @param head: The first node of linked list.
19      * @return: The new head of reversed linked list.
20      */
21     ListNode *reverse(ListNode *head) {
22         // write your code here
23         ListNode *l1=NULL,*l2=NULL,*l3=NULL;
24 
25         l1 = head; 
26         //  链表没有节点或有一个节点 
27         if(l1 == NULL || l1->next == NULL) {
28             return l1;
29         }
30         l2 = l1->next;
31         //  链表有2节点 
32         if(l2->next == NULL)  {
33             l2->next = l1;
34             l1->next = NULL;
35             return l2;
36         }
37         l3 = l2->next;
38         //  链表有3个以上节点
39         if(l2->next != NULL)  {
40             while(l2 != l3)   {
41                 l2->next = l1;
42                 if(l1 == head)
43                     l1->next = NULL;
44                 l1 = l2;
45                 l2 = l3;
46 
47                 if(l3->next != NULL)
48                     l3 = l3->next;
49             }
50             l2->next = l1;
51             return l2;
52         }
53     }
54 };
55     

 

翻转链表

标签:int   tno   text   init   lis   strong   panel   info   desc   

原文地址:http://www.cnblogs.com/libaoquan/p/6795516.html

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