错误:使用链接列表时<__main__.节点对象位于0x03A5F990>



下面是一个使用Python的链表实现:

class Node:
    def __init__(self,data,next):
        self.data = data
        self.next = next
class List:
    head=None
    tail=None
    def printlist(self):
        print("list")
        a=self.head
        while a is not None:
                print(a)
                a=a.next
    def append(self, data):
        node = Node(data, None)
        if self.head is None:
            self.head = self.tail = node
        else:
            self.tail.next = node
        self.tail = node
p=List()
p.append(15)
p.append(25)
p.printlist()
输出:

list
<__main__.Node object at 0x03A9F970>
<__main__.Node object at 0x03A9F990>

要检查您的答案,您需要编辑这个内置方法def __repr__并重写它。

您也可以通过添加__str__方法

来做到这一点

这不是错误。您看到的正是您所要求的输出:两个Node对象。

问题是您没有在Node类上定义__repr____str__,因此没有直观的方法来打印节点对象的值。它所能做的就是提示并给出默认值,这是相当没有帮助的。

将第13行改为

print(a)

print(a.data)

相关内容

  • 没有找到相关文章

最新更新