摘要: //构建二叉排序树并先序遍历public class BinaryTree{static NodeTree root; public void insert(int data) { NodeTree newRoot=new NodeTree(data); if(root==null) { root= 阅读全文
posted @ 2019-09-02 20:09 上官蓓儿 阅读(479) 评论(0) 推荐(0) 编辑