标签:
这里应当注意奇数个节点的时候。
1 ListNode* swapPairs(ListNode* head) { 2 if(!head || !head->next) return head; 3 ListNode *p=head,*q=head->next,*k=head; 4 while(q) { 5 p->next=q->next; 6 q->next=p; 7 if(p!=head) k->next=q; 8 if(p==head) head=q; 9 k=p; 10 p=p->next; 11 if(p) q=p->next; 12 else q=NULL; 13 } 14 return head; 15 }
标签:
原文地址:http://www.cnblogs.com/healthylife/p/5866391.html