二叉树基本操做及树形打印

include include define INIT_STACK_SIZE 100 define STACKINCREMENT 10 typedef char ElemType; typedef struct BiTnode{ ElemType data; struct BiTnode *lchild,*rchild; int visitcount; //非递归后序遍历使用 }BiTnode,*
相关文章
相关标签/搜索