1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
class Solution { public: ListNode* swapPairs(ListNode* head) { ListNode *dummyHead=new ListNode(0); dummyHead->next=head; ListNode *cur=dummyHead; while(cur->next!=NULL&&cur->next->next!=NULL){ ListNode* temp=cur->next; ListNode* temp1=cur->next->next->next; cur->next=cur->next->next; cur->next->next=temp; cur->next->next->next=temp1;
cur=cur->next->next; } return dummyHead->next; } };
|