码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-12-07 20:50:00      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:main   ret   for   init   not   style   next   ext   code   

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实现链表倒序(带头指针)

标签:main   ret   for   init   not   style   next   ext   code   

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

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