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

Posted WESWES

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python实现链表倒序(带头指针)相关的知识,希望对你有一定的参考价值。

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实现链表倒序(带头指针)的主要内容,如果未能解决你的问题,请参考以下文章

基于C语言的双向循环带头链表实现

基于C语言的双向循环带头链表实现

超实用链表(带头节点双向循环链表)

带头结点与不带头节点的几点区别

数据结构c语言篇 《二》带头双向循环链表实现以及链表相关面试题(下)

数据结构c语言篇 《二》带头双向循环链表实现以及链表相关面试题(下)