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

reverse list链表逆序

时间:2016-04-03 21:49:35      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

 1 ListNode* reverseList(ListNode* head){
 2     if (head==NULL || head->next==NULL) return head;
 3     ListNode *pre=head, *cur=pre->next, *post;
 4     pre->next = NULL;
 5     while (cur!=NULL){
 6         post = cur->next;
 7         cur->next = pre;
 8         pre = cur;
 9         cur = post;
10     }
11     return pre;
12 }

 

reverse list链表逆序

标签:

原文地址:http://www.cnblogs.com/co0oder/p/5350546.html

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