2013年11月22日
摘要: public class BinaryTreeTest { public static void main(String[] args) { int[] dataIntArr = {2,3,1,7,10,9,24,30,25}; BinaryTree root = BinaryTree.getBinaryTree(dataIntArr); System.out.println("数组中的数据:"); print(dataIntArr); System.out.println("先序遍历:"); x... 阅读全文
posted @ 2013-11-22 11:50 quanbove 阅读(430) 评论(0) 推荐(0)
  2013年10月23日
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2013-10-23 22:54 quanbove 阅读(2) 评论(0) 推荐(0)