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

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

时间:2019-07-10 14:53:37      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:code   image   创建   tco   src   超时   http   com   head   

题目描述:

技术图片

方法一:创建新节点(超时)

class Solution:
    def swapPairs(self, head: ListNode) -> ListNode:
        dummy=ListNode(0)
        p = dummy
        h = head
        while h:
            if h and h.next:
                p.next = ListNode(h.next.val)
                p = p.next
                p.next = ListNode(h.val)
                h = h.next.next
            else:
                p.next = ListNode(h.val)
            p = p.next
        return dummy.next

方法二;

class Solution:
    def swapPairs(self, head: ListNode) -> ListNode:
        dummy=ListNode(0)
        p = dummy
        h = head
        while h:
            if h and h.next:
                tmp = h.next
                p.next = tmp
                h.next = h.next.next
                tmp.next = h
                h = h.next
                p = p.next.next
            else:
                p.next = h
                h = h.next
        return dummy.next

方法三:递归

class Solution:
    def swapPairs(self, head: ListNode) -> ListNode:
        if not head or not head.next:
            return head
        tmp = head.next 
        head.next = self.swapPairs(head.next.next) 
        tmp.next = head 
        return tmp

 

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

标签:code   image   创建   tco   src   超时   http   com   head   

原文地址:https://www.cnblogs.com/oldby/p/11163612.html

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