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

LeetCode Swap Nodes in Pairs 交换结点对(单链表)

时间:2015-07-27 10:46:23      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

 

 

题意:给一个单链表,将其每两个结点交换,只改尾指针,不改元素值。

思路:迭代法和递归法都容易写,就写个递归的了。

 

 

4ms

技术分享
 1 /**
 2  * Definition for singly-linked list.
 3  * struct ListNode {
 4  *     int val;
 5  *     ListNode *next;
 6  *     ListNode(int x) : val(x), next(NULL) {}
 7  * };
 8  */
 9 class Solution {
10 public:
11     ListNode* swapPairs(ListNode* head) {
12         if(!head || !head->next )   return head;
13 
14         ListNode *t=head->next;
15         head->next=swapPairs(t->next);
16         return t->next=head, t;
17     }
18 
19 };
AC代码

 

LeetCode Swap Nodes in Pairs 交换结点对(单链表)

标签:

原文地址:http://www.cnblogs.com/xcw0754/p/4679343.html

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