数据结构
文章平均质量分 79
TRQYC
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
一道顺序表的实验题的反思
一开始写了个代码,输出结果表示莫名奇妙,#include#include#define maxn 20typedef struct table_type{ int a[maxn]; int length;} table_type;table_type *table;//o123,length=4,1,2,3,4,a[2]jfrom 4 to 2,table_type *In原创 2016-03-13 13:36:19 · 442 阅读 · 0 评论 -
递归实现二叉搜索树建立
写了个代码,然而就是运行崩溃,各种调试半天,发现还是不知道哪里错了不抱希望的百度了下,发现网上竟然有典型错我与我的代码一样,唉。转载如下#include #include #include typedef struct NODE{ NODE * pleft; NODE * pright; int ivalue;} node;/* 错误示例,实际上这原创 2016-05-14 12:30:14 · 507 阅读 · 0 评论
分享