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

24. 两两交换链表中的节点

时间:2019-09-11 12:07:46      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:sizeof   while   app   star   swa   end   交换   list   链表   

 一、非递归

 1 ListNode* swapPairs(ListNode* head) {
 2     ListNode* pre = (ListNode*)malloc(sizeof(ListNode));
 3     pre->next = head;
 4     ListNode* temp = pre;
 5 
 6     while (temp->next&&temp->next->next)
 7     {
 8         ListNode* start = temp->next;
 9         ListNode* end = temp->next->next;
10 
11         temp->next = end;
12         start->next = end->next;
13         end->next = start;
14         
15         temp = start;
16     }
17     return pre->next;
18 }

二、递归

1 ListNode* swapPairs(ListNode* head) {
2     if (head == NULL || head->next == NULL)
3         return head;
4     ListNode* next = head->next;
5     head->next = swapPairs(next->next);
6     next->next = head;
7     return next;
8 }

 

24. 两两交换链表中的节点

标签:sizeof   while   app   star   swa   end   交换   list   链表   

原文地址:https://www.cnblogs.com/zouma/p/11505008.html

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