hello, python newbie here, i am trying to make a binary tree using lists; but it is showing me this error, can you help me with this?

前端 未结 0 712
感情败类
感情败类 2020-12-03 22:18
class BT:
    def __init__(self, lp , data , rp):
        self.LeftPointer = lp
        self.data = data
        self.RightPointer = rp
        
def insert(x):
    #         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题