码迷,mamicode.com
首页 > 其他好文 > 详细

24.Swap Nodes in Pairs

时间:2019-04-08 19:55:16      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:list   ext   amp   app   nod   node   turn   pairs   wap   

class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        ListNode *dummy = new ListNode(-1), *pre = dummy;
        dummy->next = head;
        while (pre->next && pre->next->next) {
            ListNode *t = pre->next->next;
            pre->next->next = t->next;
            t->next = pre->next;
            pre->next = t;
            pre = t->next;
        }
        return dummy->next;
    }
};
class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if (!head || !head->next) return head;
        ListNode *t = head->next;
        head->next = swapPairs(head->next->next);
        t->next = head;
        return t;
    }
};

24.Swap Nodes in Pairs

标签:list   ext   amp   app   nod   node   turn   pairs   wap   

原文地址:https://www.cnblogs.com/smallredness/p/10672914.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!