How to extend a binary tree node without using an interface?

前端 未结 0 1488
谎友^
谎友^ 2021-01-14 07:09
type struct Node {
  x Data
  l *Node
  r *Node
}

Given the struct above, I am working on various implementations of binary search trees, all within

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