Java实现查找二叉树&C++的做法
摘要:
写了个Java的查找二叉树,用递归做的,不用递归的还没弄出来。先贴一下。回头再研究。BTreeTest.java:public class BTreeTest{ class Node{ Node left, right; int data; Node(int newData){ left = null; right = null; data = newData; } } Node root = null; int count = 0;... 阅读全文
posted @ 2013-06-30 22:47 在旅途 阅读(237) 评论(0) 推荐(0) 编辑