首页 > 其他 > 详细

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

时间:2020-12-20 20:33:55      阅读:27      评论:0      收藏:0      [点我收藏+]

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

Difficulty: 中等

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

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

示例 1:

技术分享图片

输入:head = [1,2,3,4]
输出:[2,1,4,3]

示例 2:

输入:head = []
输出:[]

示例 3:

输入:head = [1]
输出:[1]

提示:

  • 链表中节点的数目在范围 [0, 100]
  • 0 <= Node.val <= 100

Solution

技术分享图片

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def swapPairs(self, head: ListNode) -> ListNode:
        if not head: return None
        res = pre = ListNode(-1)
        pre.next = head
        while head and head.next:
            tmp = head.next
            head.next = tmp.next
            tmp.next = head
            pre.next = tmp
            head = head.next
            pre = tmp.next
        return res.next

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

原文:https://www.cnblogs.com/swordspoet/p/14163887.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!