首页 > 编程语言 > 详细

Python实现链表倒序(带头指针)

时间:2018-12-07 20:31:32      阅读:253      评论:0      收藏:0      [点我收藏+]
class node:
    def __init__(self, value):
        self.value = value
        self.next = None

def reverse(head):
    if head is None or head.next is None or head.next.next is None:
        return head

    if head.next.next.next is None:
        t = head.next.next
        t.next = head.next
        head.next.next = None
        head.next = t
        return head

    pre = head.next
    cur = pre.next
    pre.next = None
    next = cur.next
    while next.next is not None:
        cur.next = pre
        pre = cur
        cur = next
        next = next.next
    head.next = next
    next.next = cur
    cur.next = pre
    return head

def out(head):
    if head is not None:
        while head.next is not None:
            print(head.value)
            head = head.next
        print(head.value)
    else:
        print(None)

if __name__ == "__main__":
    head = node(None)
    pre = head
    for i in range(6):
        pre.next = node(i)
        pre = pre.next
    out(head)
    head = reverse(head)
    out(head)

 

Python实现链表倒序(带头指针)

原文:https://www.cnblogs.com/weswes/p/10084178.html

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