标签:结束 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
标签:结束 nod 偶数 pairs ret tmp swap python sel
原文地址:https://www.cnblogs.com/sandy-t/p/13284507.html