首页 > 其他 > 详细

LeetCode 24. Swap Nodes in Pairs

时间:2018-08-12 23:10:03      阅读:170      评论:0      收藏:0      [点我收藏+]

考察链表操作。

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

原文:https://www.cnblogs.com/travelller/p/9465388.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!