gpt4 book ai didi

python - 如何在Python中创建链表

转载 作者:行者123 更新时间:2023-12-01 07:55:49 31 4
gpt4 key购买 nike

我正在尝试解决 python 中的链表编码挑战。我只给出了以下类来创建链接列表

# Definition for singly-linked list.
class ListNode(object):
def __init__(self, x):
self.val = x
self.next = None

我可以创建一个像这样的链接列表

x = ListNode(1)
x.next = ListNode(4)
x.next.next = ListNode(5)

但是,如何迭代创建(在 for 循环内)

最佳答案

您需要两个“指针”来记住列表的头部和尾部。磁头初始化一次。您最终将使用它来访问整个列表。每次添加另一个节点时,尾部都会发生变化:

data = [5, 1, 7, 96]
tail = head = ListNode(data[0])
for x in data[1:]:
tail.next = ListNode(x) # Create and add another node
tail = tail.next # Move the tail pointer

关于python - 如何在Python中创建链表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55987583/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com