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

leetcode 24 两两交换链表中的节点

时间:2020-04-12 07:59:04      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:ble   https   tco   href   返回   else   list   一个   swap   

地址:https://leetcode-cn.com/problems/swap-nodes-in-pairs/
大意:给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

class Solution {
public:
    ListNode* swapPairs(ListNode* head) {
        if(head == NULL || head->next == NULL)
            return head;
        
        ListNode *hh = new ListNode(0);
        hh->next = head;
        ListNode *one = hh;
        ListNode *two = hh;
        while(one != NULL && one->next != NULL){
            two = one->next;

            if(two->next != NULL){
                ListNode *second = two->next;
            
                two->next = two->next->next;
                second->next = one->next;
                one->next = second;

            }else
                break;
            
            one = one->next->next;
        }
        return hh->next;
    }
};

leetcode 24 两两交换链表中的节点

标签:ble   https   tco   href   返回   else   list   一个   swap   

原文地址:https://www.cnblogs.com/c21w/p/12683532.html

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