LeetCode 24. Swap Nodes in Pairs

Posted Travelller

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 24. Swap Nodes in Pairs相关的知识,希望对你有一定的参考价值。

考察链表操作。

class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if (head==NULL) return NULL;
        if (head->next==NULL) return head;
        ListNode *preHead=new ListNode(0);
        preHead->next=head;
        ListNode *m=head->next;
        ListNode *t=preHead;
        while(head){
            head->next=m->next;
            m->next=head;
            t->next=m;

            if (head->next)head=head->next;
            else break;
            m=m->next;
            m=m->next;
            if (m->next==NULL) break;
            m=m->next;
            t=t->next;
            t=t->next;
        }
        return preHead->next;
    }
};

 

以上是关于LeetCode 24. Swap Nodes in Pairs的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode-24 Swap Nodes in Pairs

LeetCode 24 Swap Nodes in Pairs

Leetcode24. Swap Nodes in Pairs

Leetcode24. Swap Nodes in Pairs

Leetcode 24——Swap Nodes in Pairs

leetcode24 Swap Nodes in Pairs