數據結構 二叉樹經常使用簡單應用

#define MAX 100 typedef struct { datatype SqBiTree[Max+1]; int nodemax; }Bitree; typedef struct { DataType data; Struct Node * Lchild; Struct Node * Rchild; }BiTNode,*BiTree; 1.先序遍歷 void preOrd
相關文章
相關標籤/搜索