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

LeetCode 24.两两交换链表中的节点

时间:2020-07-11 18:58:30      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:结束   nod   偶数   pairs   ret   tmp   swap   python   sel   

给定一个链表,两两交换其中相邻的节点,并返回交换后的链表。

你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。

示例:
给定 1->2->3->4, 你应该返回 2->1->4->3.

class Solution:
    def swapPairs(self, head: ListNode) -> ListNode:
        if head is None or head.next is None:
            return head        
        new_head = head.next
        pre_pre = ListNode(0)    ## 设置3个辅助指针
        pre, cur = head, head.next   ## 
        while cur:            
            tmp = cur.next
            cur.next = pre            
            pre_pre.next = cur
            pre_pre = pre 
            if tmp is None: # 节点数为偶数的结束条件
                pre_pre.next = None
                break
            pre = tmp
            cur = tmp.next
            if cur is None:  # 节点数为奇数的处理
                pre_pre.next = pre
        return new_head

LeetCode 24.两两交换链表中的节点

标签:结束   nod   偶数   pairs   ret   tmp   swap   python   sel   

原文地址:https://www.cnblogs.com/sandy-t/p/13284507.html

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