根據前序和中序遍歷結果構造二叉樹

//binarytree.h #ifndef BINARYTREE_H #define BINARYTREE_H typedef struct node *link; struct node { unsigned char item; link l, r; }; link tree_init(unsigned char VLR[], unsigned char LVR[], int n);
相關文章
相關標籤/搜索