摘要: 前,中,后序遍历: 前:父节点->左子树->右子树 中:左->父->右 后:左->右->父 public class erchashu { public static void main(String[] args) { Binarytree tree=new Binarytree(); node1 阅读全文