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

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,*
相關文章
相關標籤/搜索