Swap Nodes in Pairs
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given1->2->3->4
, you should return the list as2->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.
不能改变节点里values的值,而且只能使用常量的空间。
解题思路:
代码如下:
class Solution { public: ListNode *swapPairs(ListNode *head) { if(head == NULL) return NULL; ListNode *dummy = new ListNode(0); dummy->next = head; ListNode *pre = dummy,*first = head,*second = head->next; if(second == NULL){ //只有一个节点 delete dummy; return head; } else{ //先交换第一个和第二个节点 pre->next = second; first->next = second->next; second->next = first; } while(true){ if(first->next == NULL || first->next->next == NULL) //first后面没有节点或者只有一个节点 break; else{ //有两个节点 pre = first; first = first->next; second = first->next; pre->next = second; first->next = second->next; second->next = first; } } head = dummy->next; delete dummy; return head; } };
【LeetCode练习题】Swap Nodes in Pairs,布布扣,bubuko.com
【LeetCode练习题】Swap Nodes in Pairs
原文:http://www.cnblogs.com/4everlove/p/3660639.html