有根有序樹變成左兒子右二叉樹

1 有根有序樹的數據結構 struct tree{     ElemType data; //樹存儲的數據     int child[MAXSIZE]; //所有兒子     int father; //父親     int d; //記錄兒子個數 }tree[MAXSIZE]; 2 二叉樹的數據結構 typedef struct BtNode {    BtNode *leftchild;  
相關文章
相關標籤/搜索