type top struct {
node *tree
hd int
}
func (t *bt) topview() {
if t.root == nil {
return
qu := list.New()
qu.PushBack(top{t.root, 0})
sample := qu.Front()
fmt.Println(sample.hd)```
失败,错误 sample.hd 未定义(键入 *list。元素没有字段或方法 hd)
炎炎设计
相关分类