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

24 交换链表中相连的节点

时间:2018-12-25 12:22:45      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:air   amp   temp   head   return   turn   交换   ret   ==   

    ListNode *swapPairs(ListNode *head) {
        if (head == nullptr || head->next == nullptr)
            return head;
        ListNode *it = head;
        head = head->next;
        it->next = head->next;
        head->next = it;
        while (it->next != nullptr && it->next->next != nullptr) {
            ListNode *temp = it->next;
            it->next = it->next->next;
            temp->next = it->next->next;
            it->next->next = temp;
            it = it->next->next;
        }
        return head;
    }

24 交换链表中相连的节点

标签:air   amp   temp   head   return   turn   交换   ret   ==   

原文地址:https://www.cnblogs.com/INnoVationv2/p/10173091.html

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