数据结构——由前序与中序遍历肯定的二叉树

由前序与中序遍历肯定的二叉树 #include<stdio.h> #include<stdlib.h> #include<string.h> #define MAXSIZE 50 typedef struct Node{ //二叉树的链式存储结点 char data; struct Node *Lchild; struct Node *Rchild; }BiTNode,
相关文章
相关标签/搜索