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

Posted 机器狗mo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 24.两两交换链表中的节点相关的知识,希望对你有一定的参考价值。

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

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

示例:
给定 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.两两交换链表中的节点的主要内容,如果未能解决你的问题,请参考以下文章

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

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

leetcode 每日一题 24. 两两交换链表中的节点

leetcode 每日一题 24. 两两交换链表中的节点

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

链表-LeetCode24两两交换链表中的节点