一个好老好老的老程序员了。
全部博文(915)
分类: Java
2012-09-03 16:42:13
点击(此处)折叠或打开
renxiao20032012-09-03 16:51:31
/**
* 取得左子树的先序遍历结果.
*
* @param pre
* the pre
* @param in
* the in
* @return the left pre
*/
public static char[] getLeftP
renxiao20032012-09-03 16:51:18
/**
* 打印二叉树,当不存在数据时打印*,以根->左子树->右子树(先序遍历)方式打印.
*
* @param btree the btree
* @param level the level
*/
public static void printBTree(BTreeNode btree, int level) {
for (int i = 0; i < level; i++) {
System.out
renxiao20032012-09-03 16:51:05
/**
* The Class Btree.
*/
public class Btree {
/**
* The main method.
*
* @param args the arguments
*/
public static void main(String[] args) {
char pre[] = "ABDGCEFH".toCharArray();
char in[] = &quo