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)
- 1 回答
- 0 关注
- 105 浏览
添加回答
举报
0/150
提交
取消