数据结构——二叉树的基本操作(不包括还原)

小编没有写主函数,你们需要用什么函数只需要自己写一个主函数调用一下就可以了       #include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct node //二叉树定义 {     char data;     struct node *lchild , *rchild; }tree , *stree; v
相关文章
相关标签/搜索