C语言使用顺序表实现对学生信息的管理系统
C语言使用顺序表实现对学生信息的管理系统
代码功能
1、使用顺序表实现学生名册管理程序,名册中的每条记录包括学号、姓名、联系电话等项。
2、实现数字化菜单管理:学生名册的建立、记录的添加、查找、删除和显示等功能。例如:1、添加2、查找 3、删除4、显示 0、退出
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_STR_LEN 20
#define MAX_STUDENT_NUM 10
/*定义Student结构体
参数:
id:学号
name:姓名
phone:电话号码
*/
typedef struct student{
int id;
char name;
int phone;
}STUDENT;
//插入学生信息//
int Insert(STUDENT student[],int num);
//打印学生信息
void PrintLine(STUDENT student[],int num);
//查询学生信息
int Search(STUDENT student[],int student_id);
//删除学生信息
int Delete(STUDENT student[],int student_id);
int main(){
STUDENT a[MAX_STUDENT_NUM];
STUDENT student;
int res,num,student_id;
int command;
int home="1.Insert student\n2.Del student\n3.Search student\n4.Display all student\n5.exit\n";
while(1){
printf("%s",home);
scanf("%d",&command);
fflush(stdin);
switch(command){
case 1:
printf("input the number of student\n");
scanf("%d",&num);
fflush(stdin);
if(num>MAX_STUDENT_NUM){
printf("Exceeds the maximum\n");
continue;
}
res=Insert(a,num);
if(res==2){
printf("success!\n");
}else{
printf("false!\n");
}
break;
case 2:
printf("input the student id you want to del:\n");
scanf("%d",&student_id);
fflush(stdin);
res=Search(a,student_id);
if(res==-1){
printf("the student is not exist\n");
}else{
Delete(a,res);
num=num-1;
}
break;
case 3:
printf("input the student number you want to search\n");
scanf("%d",&student_id);
fflush(stdin);
res=Search(a,student_id);
if(res==-1){
printf("the student is not exist\n");
}else{
printf("该学生位于:%d\n",res);
}
break;
case 4:
PrintLine(a,num);
break;
case 5:
return 0;
default :
printf("input error!\n");
break;
}
}
}
int Insert(STUDENT student[],int num){
int i;
int res;
for(i=0;i<=num-1;i++){
printf("input the student id:\n");
res=scanf("%d",&student[i].id);
fflush(stdin);
if(res==0){
printf("error!input again\n");
res=scanf("%d",&student[i].id);
}
printf("input the student name:\n");
scanf("%s",&student[i].name);
printf("input the student number\n");
scanf("%d",&student[i].phone);
fflush(stdin);
if(res==0){
printf("error!input again\n");
res=scanf("%d",&student[i].id);
}
}
return 2;
}
void PrintLine(STUDENT student[],int num){
int i;
if(num==0){
printf("the student array is null\n");
}else{
for(i=0;i<num;i++){
printf("学号:%d,名字:%s,电话:%d",student[i].id,&student[i].name,student[i].phone);
printf("\n");
}
}
}
int Search(STUDENT student[],int student_id){
int i;
for(i=0;i<=MAX_STUDENT_NUM;i++){
if(student[i].id==student_id){
return i+1;
}
}
return -1;
}
int Delete(STUDENT student[],int student_id){
int j;
for(j=student_id;j<=MAX_STUDENT_NUM;j++){
student[j-1].id=student[j].id;
student[j-1].name=student[j].name;
student[j-1].phone=student[j].phone;
}
printf("success!\n");
return 1;
}
测试截图:
1.Insert功能的检验(参数为:学生人数,学生信息;返回插入结果:success/false)
2.Display功能的检验(无参数;返回结果:空数组/打印所有学生信息)
3.Search功能的检验(参数:学生的学号;返回信息:不存在/位置)
4.Del功能的检验(参数:学生的学号;返回信息:succes)
扫码关注作者个人技术公众号,有关技术问题后台回复即可,不定期将有学习资源分享
博客园:https://www.cnblogs.com/newtol
微信公众号:Newtol
【转发请务必保留原作者,否则保留追责权利】