为了账号安全,请及时绑定邮箱和手机立即绑定

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

标签:
机器学习

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

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

示例:

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

说明:

你的算法只能使用常数的额外空间。

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

# class ListNode:

#     def __init__(self, x):

#         self.val = x

#         self.next = None

class Solution:

    def swapPairs(self, head):

        """

        :type head: ListNode

        :rtype: ListNode

        """

        head = self.duigui(head)

        return head

    def duigui(self, tree):

        if tree == None or tree.next == None:

            return tree

        else:

            next_data = tree

            nnext_data = tree.next

            next_data.next = nnext_data.next

            nnext_data.next = next_data

            # tree.next = nnext_data

            next_data.next = self.duigui(next_data.next)

            return nnext_data


webp



作者:不爱去冒险的少年y
链接:https://www.jianshu.com/p/72c165c1a79d


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消