二叉树的构造,中序遍历、先序遍历、后序遍历,以及深度 完整代码

#include <stdio.h> #include <malloc.h> typedef struct node1{ char data; struct node1 *lchild,*rchild; }node1,BTCHINALR; BTCHINALR *createbt() { BTCHINALR *q; struct node1 *s[30]; int j,i,x; printf("建立
相关文章
相关标签/搜索