
数据结构
文章平均质量分 71
Starbucks_star
Your dream are what you are!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数据结构--线性表的所有功能实现
//头文件 include"c1.h" #include #include #include // malloc()等 #include // INT_MAX等 #include // EOF(=^Z或F6),NULL #include // atoi() #include // eof() #include // floor(),ceil(),abs()原创 2014-10-15 11:13:22 · 911 阅读 · 0 评论 -
<数据结构>单链表元素按插入方法排序实现
typedef struct node { int data; struct node *next; }linklist,*link; void Insertsort(link L) { link p,q,ru; p=L->next; L->next=NULL; while(p!=NULL) { r=L; q=L->next; whil原创 2014-11-03 22:40:07 · 6001 阅读 · 0 评论