
C语言
algorithm_lixuan
码农orz
展开
-
顺序二叉树的建立、查找、删除、插入、替换、遍历
/*********************************************************************************************************顺序二叉树的建立、查找、删除、插入、替换、遍历默认是中序遍历前序遍历让我注释了,要是用的话取消注释即可测试的数据第一个输入:8第二个输入101838原创 2017-07-22 13:19:56 · 869 阅读 · 0 评论 -
树的后序遍历方式源码
#include #include typedef struct node{ char data; struct node *llink; struct node *rlink;}NODE;NODE*build()//{ NODE *tree; char c; scanf("%c",&c); if(c=='#原创 2017-07-22 13:12:52 · 347 阅读 · 0 评论