根据先序序列和中序序列建立二叉树——递归及非递归实现详细讲解

二叉树存储结构:node typedef struct Tnode { char data; struct Tnode *lnode; struct Tnode *rnode; }Tnode; typedef Tnode* type; 递归建立二叉树:web Tnode *createtree6(char a[], int n1,int m1,char b[],int n2,int m2)
相关文章
相关标签/搜索