摘要:
《将博客搬至CSDN》《将博客搬至CSDN》 阅读全文
摘要:
package com.cjonline.foundation.evisa;public class TestTree { private int data=-1; private TestTree lchild=null; private TestTree rchild=null; private int pos=-1; //记录当前已经使用数组的位置 /* * 构造二叉树 */ public TestTree createTree(TestTree tree,int[] data){ if(data == nu... 阅读全文