面试过程中经常会问到二叉树相关的问题,下面使用Go整理下二叉树相关问题的代码实现 树的定义 //define the data struct type BinaryTree struct { pLeft *BinaryTree //The Left Branch pRight *BinaryTree //The Right Branch value interface{} //Store The Value Of Tree Node } 树节点的创建以及添加左右子树节点 //create the BinaryTree node func NewBinaryTree(value in