python数据结构 - 链表

2022/3/27 20:52:43

本文主要是介绍python数据结构 - 链表,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

创建

class Node:
    def __init__(self, item):
        self.item = item
        self.next = None


def create_link_list(lis):
    head = Node(lis[0])

    for element in lis[1:]:
        node = Node(element)
        node.next = head
        head = node

    return head


if __name__ == '__main__':
    lis1 = [1, 2, 3]
    node_obj = create_link_list(lis1)
    print(node_obj.item)
    print(node_obj.next.item)
    print(node_obj.next.next.item)

 



这篇关于python数据结构 - 链表的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程