how to make queue of type struct in golang

后端 未结 0 983
情话喂你
情话喂你 2021-02-20 02:09
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}         


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