这篇文章主要介绍了C语言如何使用链表实现学生信息管理系统,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网页空间、营销软件、网站建设、科尔沁网站维护、网站推广。代码实现的功能:
1.插入学生信息 2.显示学生信息 3.删除学生信息 4.在指定位置插入学生信息 5.查找学生信息
代码内容:
#include#include #include #define Max_Student_Num 10 #define Max_Str_len 20 typedef struct T_student{ int number; char name [Max_Student_Num]; char phone[Max_Student_Num]; }; typedef struct T_Node{ struct T_student s; struct T_Node * next; }; char command_str[]={"\n1 display all member;\n2 insert member;\n3 del member;\n4 exit\nCommand selection:"}; struct T_student students[Max_Student_Num]; struct T_Node * head = NULL; int main(int argc, char* argv[]) { int command, i; struct T_student student; struct T_Node * pStu =head; memset(&student,0,sizeof(student)); while(1){ printf("%s",command_str); scanf("%d", &command); switch(command) { case 1: if(head==NULL){ printf("empty!!!!!!!!!!!!\n"); break; } if(head->next==head){ display_student(head); }else{ pStu=head->next; do { display_student(pStu); pStu=pStu->next; }while(pStu!= head->next); // } break; case 2: printf("enter new student number:"); scanf("%d", &student.number); printf("enter new student name:"); scanf("%s", &student.name); if(strlen(student.name) > Max_Str_len) { printf("name is too long!!\n"); continue; } printf("enter new student phone:"); scanf("%s", &student.phone); if(strlen(student.phone) > Max_Str_len) { printf("phone is too long!!\n"); continue; } printf("\n"); if(student.number != 0) insert_student(student); break; case 3: printf("Inter deleted student number:"); scanf("%d", &student.number); del_student(student); break; case 4: return 0; default: printf("error command, try again\n"); break; } } } void display_student( struct T_Node * pStu){ printf("number:%d name:%s phone:%s \n",pStu->s.number,pStu->s.name,pStu->s.phone); } void insert_student(struct T_student student){ struct T_Node* pNode ; struct T_Node* pStu =NULL; int size = sizeof(struct T_Node); pStu=(struct T_Node *)malloc (size); if(pStu == NULL){ return ; } memcpy(&pStu->s,&student,sizeof(student)); if(head==NULL){ pStu->next=head; head=pStu; head->next=head; return ; } pStu->next = head->next; head->next=pStu; } void del_student(struct T_student student){ struct T_Node *pNode =NULL,*p=NULL; if(head->next==head && head->s.number==student.number){ pNode=head; head=NULL; free(pNode); printf("success"); return; } for(pNode=head->next;pNode != head;pNode=pNode->next){ if( pNode->next->s.number == student.number){ p=pNode->next->next; free(pNode->next); pNode->next=p; printf("Delete success!\n"); return; } } printf("Not Found\n"); }
测试截图:
1.插入功能:
2.显示功能:
3.查询功能:
4.删除功能:
5.指定位置插入:
感谢你能够认真阅读完这篇文章,希望小编分享的“C语言如何使用链表实现学生信息管理系统”这篇文章对大家有帮助,同时也希望大家多多支持创新互联建站,关注创新互联网站建设公司行业资讯频道,更多相关知识等着你来学习!
另外有需要云服务器可以了解下创新互联建站www.cdcxhl.com,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。