在python运行上述代码后,出现<main.Node object at 0x000001272338C850>,该怎么解决
时间: 2023-07-16 21:12:45 浏览: 213
jsoup-1.8.1.jar
这个输出是因为你在代码的最后调用了`print(head)`,而`head`是一个`Node`对象,所以输出的是该对象的内存地址。如果你想输出链表的值,可以遍历整个链表并依次输出每个节点的值,例如:
```python
def print_list(head):
current = head
while current is not None:
print(current.val)
current = current.next
```
然后在代码的最后调用`print_list(head)`即可。
阅读全文