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

反转单链表

时间:2020-06-25 17:31:04      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:单链表   one   turn   复杂   nod   python   链表   方法   def   

方法1:

迭代

时间复杂度:O(n)

空间复杂度:O(1)

class ListNode:
    def __init__(self, x):
        self.val = x
        self.next = None

class Solution:
    def reverseList(self, head: ListNode) -> ListNode:
        p = None
        cur = head
        while cur:
            q = cur.next
            cur.next = p
            p , cur = cur , q
        return p

方法二:

递归

时间复杂度:O(n)

空间复杂度:O(n)

class ListNode:
    def __init__(self, x):
        self.val = x
        self.next = None

class Solution:
    def reverseList(self, head: ListNode) -> ListNode:
        if not head or not head.next:
            return head
        cur = self.reverseList(head.next)
        head.next.next = head
        head.next = None
        return cur

反转单链表

标签:单链表   one   turn   复杂   nod   python   链表   方法   def   

原文地址:https://www.cnblogs.com/gugu-da/p/13192158.html

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