资源简介
应用c语言完成了学生学籍管理系统。包括对学生信息的增删改查。系统特别完整。

代码片段和文件信息
#include
#include
#include
#define SIZE 100
typedef struct student
{
int data;
int num;
struct student *next;
}node*pnode;
pnode Creat_list();//新建链表
pnode Insert_list(pnode head);//插入链表
void Trave_list(pnode head);//遍历链表
pnode Delete_list(pnode head);//删除链表
pnode Sort_list(pnode head);//链表排序
pnode Rework_list(pnode head);//修改数据
void Len_list(pnode head);//链表的长度
void fsearch(pnode head);//查找数据
void writefile( pnode head);//写入文件
void readfile();//从文件中读出
void writefile( pnode head)
{
FILE *fp;
pnode p;
int i=0;
p=(pnode)malloc(sizeof(node));
fp=fopen(“2.txt““w+“);
p=head->next;
while(p!=NULL)
{
fprintf(fp“num=%2ddata=%2d\n“p->nump->data);
p=p->next;
i++;
}
fclose(fp);
}
void readfile()
{
FILE *fp;
char ch;
fp=fopen(“2.txt““r“);
rewind(fp);
while(!(feof(fp)))
{
ch=fgetc(fp);
putchar(ch);
}
}
pnode Creat_list()
{
int leni;
pnode pheadptr;
head=(pnode)malloc(sizeof(node));
ptr=head;
printf(“Please input the numbers how many you want len=“);
scanf(“%d“&len);
for(i=0;i {
p=(pnode)malloc(sizeof(node));
printf(“Please input the num you want num=“);
scanf(“%d“&p->num);
printf(“data=“);
scanf(“%d“&p->data);
ptr->next=p;
p->next=NULL;
ptr=ptr->next;
}
return head;
}
void Trave_list(pnode head)
{
pnode p=head->next;
printf(“The following is the students‘information\n“);
while(p!=NULL)
{
printf(“num=%5ddata=%5d\n“p->nump->data);
p=p->next;
}
}
pnode Insert_list(pnode head)
{
int numi=1 j=0d=-1;
pnode ptr=head->next;
pnode p=(pnode)malloc(sizeof(node));
printf(“Please input the num what you want to insert before:num=“);
scanf(“%d“&num);
while(ptr)
{
j++;
if(ptr->num==num)
{
int d=num;
printf(“have found the num\n“);
break;
}
else
ptr=ptr->next;
}
if(num==d)
printf(“j=%5d\n“j);
else
{
printf(“have not found the num\n“);
exit(-1);//遇到错误推出了
}
printf(“Please input the num you want data= “);
scanf(“%d“&p->num);
ptr=head;
while(p&&i {
ptr=ptr->next;i++;
}
if(p==NULL||i==j)
exit(-1);
p->next=ptr->next;
ptr->next=p;
return head;
}
pnode Delete_list(pnode head)
{
int i=1j=0d=-1;
pnode ptr q;
ptr=head->next;
int num;
printf(“Please input the num you want delete num=“);
scanf(“%d“&num);
while(ptr!=NULL)
{
j++;
if(ptr->num==num)
{
printf(“have found it\n“);
d=1;
break;
}
else
ptr=ptr->next;
}
ptr=head;
while(ptr&&i {
i++;
ptr=ptr->next;
}
if(ptr==NULL||i==j)
{
printf(“errorcannot find the number\n“);
exit(-1);
}
q=ptr->next;
ptr->next=q->next;
free(q);
return head;
}
pnode Sort_list(pnode head)
{
pnode p1p2ptemppfinish=NULL;
p1=head->next;
for(p1;p1->next!=pfinish;)
{
for(p2=p1;p2->next!=pfinish;)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 208959 2014-11-28 23:51 stu_message\Debug\stu_manage.exe
文件 227152 2014-11-28 23:51 stu_message\Debug\stu_manage.ilk
文件 25306 2014-11-28 23:51 stu_message\Debug\stu_manage.obj
文件 222368 2014-11-28 18:17 stu_message\Debug\stu_manage.pch
文件 541696 2014-11-28 23:51 stu_message\Debug\stu_manage.pdb
文件 184384 2014-11-28 18:02 stu_message\Debug\stu_message.exe
文件 196840 2014-11-28 18:16 stu_message\Debug\stu_message.ilk
文件 222368 2014-11-28 17:28 stu_message\Debug\stu_message.pch
文件 508928 2014-11-28 18:02 stu_message\Debug\stu_message.pdb
文件 41984 2014-11-28 23:51 stu_message\Debug\vc60.idb
文件 53248 2014-11-28 23:51 stu_message\Debug\vc60.pdb
文件 7665 2014-11-28 23:51 stu_message\stu_manage.cpp
文件 3449 2014-11-28 23:40 stu_message\stu_manage.dsp
文件 526 2014-11-28 23:52 stu_message\stu_manage.dsw
文件 41984 2014-11-28 23:52 stu_message\stu_manage.ncb
文件 48640 2014-11-28 23:52 stu_message\stu_manage.opt
文件 772 2014-11-28 23:51 stu_message\stu_manage.plg
文件 4343 2014-11-28 18:16 stu_message\stu_message.dsp
文件 528 2014-11-28 17:27 stu_message\stu_message.dsw
文件 33792 2014-11-28 18:16 stu_message\stu_message.ncb
文件 48640 2014-11-28 18:16 stu_message\stu_message.opt
文件 1014 2014-11-28 18:16 stu_message\stu_message.plg
目录 0 2014-11-28 23:51 stu_message\Debug
目录 0 2014-11-28 23:52 stu_message
----------- --------- ---------- ----- ----
2624586 24
相关资源
- 操作系统c语言模拟文件管理系统844
- C语言开发实战宝典
- C++中头文件与源文件的作用详解
- C语言代码高亮html输出工具
- 猜数字游戏 c语言代码
- C语言课程设计
- 数字电位器C语言程序
- CCS FFT c语言算法
- 使用C语言编写的病房管理系统
- 通信过程中的RS编译码程序(c语言)
- 计算机二级C语言上机填空,改错,编
- 用回溯法解决八皇后问题C语言实现
- 简易教务管理系统c语言开发文档
- 操作系统课设 读写者问题 c语言实现
- 小波变换算法 c语言版
- C流程图生成器,用C语言代码 生成C语
- 3des加密算法C语言实现
- 简单的C语言点对点聊天程序
- 单片机c语言源程序(51定时器 八个按
- 个人日常财务管理系统(C语言)
- c语言电子商务系统
- 小甲鱼C语言课件 源代码
- 将图片转换为C语言数组的程序
- C语言实现的一个内存泄漏检测程序
- DES加密算法C语言实现
- LINUX下命令行界面的C语言细胞游戏
- 用单片机控制蜂鸣器播放旋律程序(
- 学校超市选址问题(数据结构C语言版
- 电子时钟 有C语言程序,PROTEUS仿真图
- 尚观培训linux许巍老师关于c语言的课
评论
共有 条评论