線索二叉樹的c語言實現

/* 用例: 輸入:abdg空空h空空e空空cf空空空 中序:dbagecf */ include include include define SIZE 50 typedef struct btnode { char data; struct btnode* lchild; struct btnode* rchild; bool ltag; bool rtag; }BTNode,*BiTree;
相關文章
相關標籤/搜索