递归和非递归方式实现二叉树的建立和遍历
递归和非递归方式实现二叉树的建立和遍历2013-05-24#include<stdio.h> #include<stdlib.h> #define MAXSIZE 20 typedef struct BiTnode{char data;struct BiTnode *lchild,*rchild; }BiTnode,*BiTree; int i = 0; BiTree Create(BiTree t,char s[]) {char ...