一、题目描述
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4
, you should return the list as 2->1->4->3
.
Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.
题目解读:将链表中的相邻节点,两两交换位置,不能通过修改值的方式。
思路:采用递归的方法
c++代码(4ms, 2.80%)
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
if(head == NULL || head->next == NULL)
return head;
else{
ListNode* cur=head->next->next;
ListNode* pre=head->next;
pre->next=head;
head->next = swapPairs(cur);
return pre;
}
}
};