C語言之學(xué)生管理系統(tǒng)_第1頁
C語言之學(xué)生管理系統(tǒng)_第2頁
C語言之學(xué)生管理系統(tǒng)_第3頁
C語言之學(xué)生管理系統(tǒng)_第4頁
C語言之學(xué)生管理系統(tǒng)_第5頁
已閱讀5頁,還剩18頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

運(yùn)行結(jié)果:程序源碼:#include<stdio.h>#include<malloc.h>#include<string.h>#include<stdlib.h>求字節(jié)數(shù)運(yùn)算符#include<conio.h>求字節(jié)數(shù)運(yùn)算符#defineLENsizeof(structstudent)//structstudent{charname[20];longintnum;charsex[4];intage;charaddress[30];floatscore;structstudent*next;//鏈表};//定義一個(gè)結(jié)構(gòu)題intTOTAL_NUM=0;//學(xué)生總數(shù)structstudent*head=NULL;voidmainmenu();//主界面voidrecord();//記錄數(shù)據(jù)voidinsert(structstudent*stu);//插入數(shù)據(jù)voiddisplay(structstudent*stu);//顯示一個(gè)學(xué)生的信息voiddisplayAll();//顯示所有學(xué)生的信息voidquery();//查詢學(xué)生信息voidquery_by_num();//按學(xué)號(hào)查詢學(xué)生信息voidquery_by_name();voidreadData();//讀取文件里學(xué)生的信息voidwriteData();//向文件寫入學(xué)生信息voidfreeAll();//清空鏈表內(nèi)容voiddel();//刪除學(xué)生信息voidchange();//更改學(xué)生信息voidsort();//排序voiddevise(structstudent*p);//選擇更改內(nèi)容intmain(void){mainmenu();return0;}//系統(tǒng)主菜單voidmainmenu()intchoice;choice=-1;readData();printf("\t\t\t \n");printf("\t\t\t| 歡迎使用通信工程專業(yè)學(xué)生信息管理系統(tǒng) |\n");printf("\t\t\t \n");printf("\t\t\t本程序需要在當(dāng)前目錄下建立student.txt才可正常運(yùn)行\(zhòng)n");do{printf("\n\n\n");printf("\t\t\t \n");printf("\t\t\t通信工程專業(yè)學(xué)生信息管理系統(tǒng)|\n");printf("\t\t\t \n");printf("\t\t\t[1] 錄入學(xué)生信息 |\n");printf("\t\t\t[2] 瀏覽學(xué)生信息 |\n");printf("\t\t\t[3] 查詢學(xué)生信息 |\n");printf("\t\t\t[4] 刪除學(xué)生信息 |\n");printf("\t\t\t[5] 修改學(xué)生信息 |\n");printf("\t\t\t[6] 排序|\n");printf("\t\t\t[0] 退出系統(tǒng)|\n");\n");printf("\t\t\t\n");printf("請(qǐng)輸入您的選擇");scanf("%d",&choice);switch(choice){case0:writeData();freeAll();exit(0);case1:record();break;case2:displayAll();break;case3:query();break;case4:del();break;case5:change();break;case6:sort();break;default:printf("\n無效選項(xiàng)!");break;}}while(choice!=0);}//錄入學(xué)生信息voidrecord(){structstudent*p0;p0=(structstudent*)malloc(LEN);printf("\t\t\t請(qǐng)輸入學(xué)生的姓名:");scanf("%s",p0->name);printf("\t\t\t請(qǐng)輸入學(xué)生的學(xué)號(hào):");scanf("%ld",&p0->num);printf("\t\t\t請(qǐng)輸入學(xué)生的性別:");scanf("%s",p0->sex);printf("\t\t\t請(qǐng)輸入學(xué)生的年齡:");scanf("%d",&p0->age);printf("\t\t\t請(qǐng)輸入學(xué)生的地址:");scanf("%s",p0->address);printf("\t\t\t請(qǐng)輸入學(xué)生的成績(jī):");scanf("%f",&p0->score);insert(p0);printf("\t\t\t該學(xué)生的信息為:\n");printf("\t\t\t \n");printf("\t\t\t姓名\t學(xué)號(hào)\t\t年齡\t性別\t地址\t\t成績(jī)\n");display(p0);}voidinsert(structstudent*stu){structstudent*p0,*p1,*p2;p1=head;p0=stu;if(head==NULL)head=p0;p0->next=NULL;}else{while((p0->num>p1->num)&&(p1->next!=NULL)){p2=p1;p1=p1->next;}if(p0->num<=p1->num){if(head==p1)head=p0;elsep2->next=p0;p0->next=p1;}else{p1->next=p0;p0->next=NULL;TOTAL_NUM++;}voiddisplay(structstudent*p){printf("\t\t\t%s\t%ld\t\t%d\t%s\t%s\t\t%f\n",p->name,p->num,p->age,p->sex,p->address,p->score);}//瀏覽學(xué)生信息voiddisplayAll(){structstudent*p;printf("\t\t\t學(xué)生總數(shù):%d\n",TOTAL_NUM);p=head;if(head!=NULL){printf("\t\t\t姓名\t學(xué)號(hào)\t\t年齡\t性別\t地址\t\t成績(jī)\n");printf("\t\t\t \n");do{display(p);p=p->next;while(p!=NULL);}printf("\n");}voidquery(){intchoice;choice=-1;do{printf("\n");printf(" \n");printf("|按學(xué)號(hào)查詢請(qǐng)按1|\n");printf("|按姓名查詢請(qǐng)按2|\n");printf("|取消請(qǐng)按0|\n");printf("+ +\n");printf("請(qǐng)輸入您的選擇");scanf("%d",&choice);switch(choice){case0:return;case1:query_by_num();break;case2:query_by_name();break;default:printf("\n 無效選項(xiàng)!”);break;}}while(choice!=0);}//按姓名查詢學(xué)生信息voidquery_by_name(){charname[20];structstudent*p1;printf("請(qǐng)輸入學(xué)生的姓名");scanf("%s",name);if(head==NULL){printf("無學(xué)生記錄 \n”);return;}p仁head;while(strcmp(name,p1->name)&&p1->next!=NULL)p1=p1->next;if(!strcmp(name,p1->name)){printf("\t\t\t姓名\t學(xué)號(hào)\t\t年齡\t性別\t地址\t\t成績(jī)\n");printf("\t\t\t \n");display(pl);}elseprintf("沒有該學(xué)生記錄請(qǐng)核對(duì)】;}//按學(xué)號(hào)查詢學(xué)生信息voidquery_by_num(){intnum;structstudent*p1;printf("請(qǐng)輸入學(xué)生的學(xué)號(hào)");scanf("%ld",&num);if(head==NULL){printf("無學(xué)生記錄\n”);return;}p1=head;while(num!=p1->num&&p1->next!=NULL)pl=p1->next;if(num==p1->num){printf("\t\t\t姓名\t學(xué)號(hào)\t\t年齡\t性別\t地址\t\t成績(jī)\n");printf("\t\t\t \n");display(p1);}elseprintf("\t\t\t沒有該學(xué)生記錄請(qǐng)核對(duì) ”);}//寫入文件voidwriteData(){FILE*fp;〃文件指針structstudent*p;fp=fopen("1.txt","w");if(!fp){printf("文件打開錯(cuò)誤 Lreturn;}fprintf(fp,"%d\n",TOTAL_NUM);for(p=head;p!=NULL;p=p->next){fprintf(fp,"%s\t%ld\t%s\t%d\t%s\t%f\n",p->name,p->num,p->sex,p->age,p->address,p->score);}fclose(fp);}voidfreeAll(){structstudent*p1,*p2;p1=p2=head;while(p1){p2=p1->next;free(p1);p1=p2;}}//讀取文件voidreadData(){FILE*fp;//文件指針structstudent*p1,*p2;fp=fopen("student.txt","r");if(!fp){printf("文件打開錯(cuò)誤");return;}fscanf(fp,"%d\n",&TOTAL_NUM);head=p1=p2=(structstudent*)malloc(LEN);fscanf(fp,"%s\t%ld\t%s\t%d\t%s\t%f\n",p1->name,&p1->num,p1->sex,&p1->age,p1->address,&p1->score);while(!feof(fp)){p1=(structstudent*)malloc(LEN);fscanf(fp,"%s\t%ld\t%s\t%d\t%s\t%f\n",p1->name,&p1->num,p1->sex,&p1->age,p1->address,&p1->score);p2->next=p1;p2=p1;}p2->next=NULL;fclose(fp);}//刪除學(xué)生信息voiddel(){structstudent*p1,*p2;longintnum;if(head==NULL){printf("無學(xué)生記錄\n");return;}printf("請(qǐng)輸入您要?jiǎng)h除的學(xué)生的學(xué)號(hào)");scanf("%ld",&num);p1=head;while(num!=p1->num&&p1->next!=NULL){p2=p1;p1=p1->next;}if(num==p1->num){if(p1==head)head=p1->next;elsep2->next=p1->next;free(p1);TOTAL_NUM--;}elseprintf("沒有該學(xué)生記錄請(qǐng)核對(duì)\n");}voidsort()//排序模塊。將學(xué)生記錄按學(xué)號(hào)從小到大排列。用起泡排序算法實(shí)現(xiàn){inti;structstudent*ptr,*s=head,*p;intcount=0,count1;while(s)//統(tǒng)計(jì)鏈表結(jié)點(diǎn)個(gè)數(shù){count++;s=s->next;}for(i=1;i<count;i++){ptr=head;p=NULL;個(gè)結(jié)點(diǎn)while(ptr&&ptr->next&&(count1--)){if(ptr->score>ptr->next->score){s=ptr->next;ptr->next=s->next;if(p==NULL)〃ptr處于隊(duì)頭時(shí)head=s;elsep_>next=s;s->next=ptr;p=s;}else{ptr=ptr->next;if(p==NULL)//ptr處于隊(duì)頭時(shí)p=head;elsep=p->next;}}displayAll();return;}voidchange(){structstudent*p1,*p2;longintnum;if(head==NULL){printf("無學(xué)生記錄\n");return;}printf("請(qǐng)輸入您要修改的學(xué)生的學(xué)號(hào)");scanf("%ld",&num);p1=head;while(num!=p1->num&&p1->next!=NULL){p2=p1;p1=p1->next;if(num==p1->num)devise(p1);elseprintf("沒有該學(xué)生記錄請(qǐng)核對(duì)\n");}voiddevise(structstuden

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論