首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
C语言实现单向链表及其各种排序(含快排,选择,插入,冒泡)
#include<stdio.h> #include<malloc.h> #define LEN sizeof(struct Student) struct Student //结构体声明 { long num; int score; struct Student* next; }; int n; struct Student* creat() //创建单向链表 { struct Student *head=NULL, *p_before, *p_later; p_before ...
2014-11-02 00:10 |
阅读 3765 次
|
评论 0 条
同勉共进的博客
同勉共进
浏览19671次
文章分类
默认分类(0)
C++(0)
数据结构(0)
C++数据结构(7)
C语言链表排序(1)
C语言快排(1)
公告声明(1)
文章归档
2014年11月(10)
最新评论