




版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領
文檔簡介
1、河南理工大學計算機科學與技術學院課程設計報告課程名稱:高級語言程序設計設計題目:班級通訊錄學生姓名:楊傳華學 號:專業(yè)班級:信管1002班指導教師:于金霞2021年 09 月 10 日一、設計題目及要求設計題目:班級通訊錄對象:信管10級一、技術參數(shù)和設計要求:1. 該系統(tǒng)主要處理通訊錄的相關信息。2. 通訊錄信息主要包括:姓名、班級、 、家庭 、電子郵件、通訊錄地址、 等內(nèi)容。3. 完成以下的操作:實現(xiàn)通訊錄信息的添加、修改、刪除和查詢。二、設計內(nèi)容與步驟1. 分析并建立滿足上述要求的數(shù)據(jù)結構2. 算法
2、設計與分析3. 程序設計、實現(xiàn)、調試4. 課程設計說明書二、算法設計分析因為一個班級里面有很多學生,而且每個學生又包含很多信息如姓名、學號、 、郵箱等,這些信息又分別屬于不同的數(shù)據(jù)類型,但是每個學生所包含的數(shù)據(jù)信息成分相同,所以要用到構造數(shù)據(jù)類型:結構體。用到結構體,應為要能實現(xiàn)查找、修改、刪除等,所以又要用到鏈表的知識!要實現(xiàn)這些功能,要用到模塊化設計思想,用函數(shù)來解決問題!三、具體函數(shù)分析一、插入新結點在插入新結點之前,先創(chuàng)立一個只有指針域的頭結點,又指針p掃描全鏈表,實現(xiàn)尾插法,并返回頭指針。二、刪除結點用連個指針p,q掃描全鏈表,先通過學號找到要刪除的結點q,然后將q結點從鏈表中刪除,
3、然后釋放此結點!三、修改結點內(nèi)容通過學號找到此學生,通過switch語句選擇要修改的工程,然后進行修改。四、查找并輸出通過學號找到此學生,然后分別訪問并輸出此結點各項內(nèi)容。五、輸出通訊錄順序訪問鏈表各個結點,并輸出結點信息。六、保存為文件現(xiàn)在d盤里面創(chuàng)立一個讀寫類型文件“,然后通過文件類型指針fp訪問此文件并寫入通訊錄信息。七、釋放結點并結束程序從頭結點開始,使頭結點不斷后移,并將前面的結點釋放。四、算法流程圖goto:start開始start:輸入操作符czcz=?1新建2刪除3修改4查詢5輸出7退出系統(tǒng)結束6保存五、 函數(shù)運行情況及局部代碼一、主函數(shù)框架主函數(shù)要用到根本輸入輸出、switc
4、h語句轉換操作命令,然后用goto語句實現(xiàn)循環(huán)操作。具體如下:int main()int cz;/操作符struct stu *head,*q;head=(struct stu*)malloc(sizeof(struct stu);head->next=NULL;system("color 2e");/修改dos窗口前背景色,用兩個十六進制數(shù)表示printf("n*C語言課程設計*n");printf(" *班級通訊錄*nnn");printf("*1:新建通訊錄*n");printf("*2:刪除
5、通訊錄*n");printf("*3:修改通訊錄*n");printf("*4:查詢通訊錄*n");printf("*5:顯示全部記錄*n");printf("*6:保存為文件*n");printf("*7:釋放鏈表并結束程序*n");printf("*n");start :printf("輸入操作符1-7:");scanf("%d",&cz);switch(cz)case 1:q=(struct stu *)mall
6、oc(sizeof(struct stu);printf("t輸入姓名:");scanf("%s",q->name);printf("t輸入學號:");scanf("%d",&q->xh);printf("t輸入班級:");scanf("%d",&q->grade);printf("t 號:");scanf("%s",q->cel);printf("t家庭 :");scanf(
7、"%s",q->tel);printf("t輸入電子郵件:");scanf("%s",q->mail);printf("t通訊錄地址:");scanf("%s",&q->add);printf("t輸入 :");scanf("%s",&q->post);charu(head,q);printf("插入成功!n");break;case 2:/刪除head=del(head); break;case
8、 3:change(head);break;case 4:search(head);break;case 5:printall(head);break;case 6:printf("n");baoc(head); break;case 7:sf(head);exit (0);default: printf("輸入操作錯誤,重新"); goto start;return 0;其中用到輸出*來美化系統(tǒng)運行頁面,然后用system("color 2e");語句來修改dos界面前背景顏色,如; 二、插入函數(shù)struct stu *charu(
9、struct stu *head,struct stu *q)/插入新結點struct stu *p;for(p=head;p->next!=NULL;p=p->next);p->next=q;q->next=NULL;return head;運行界面如圖:本局部采用尾插法。三、刪除結點代碼如下:struct stu *del(struct stu *head)/刪除結點struct stu *p,*q;int a;/要刪除學生的學號if(head->next=NULL)printf("*通訊錄為空!*nnn");elseprintf(&quo
10、t;t輸入要刪除學生學號:");scanf("%d",&a);for(p=head,q=p->next;q->xh!=a&&q->next!=NULL;)p=p->next;q=p->next;if(q->xh=a)p->next=q->next;free(q);printf("刪除成功!n");else printf("no people have found!");return head;運行界面:通訊錄為空時:不為空時:四、查找輸入要查找學生學號,
11、找到后將其輸出,如圖:五修改學生信息先通過學號找到該學生,然后用switch語句選擇修改項,再用switch和goto語句實現(xiàn)是否循環(huán),運行如圖:六、保存文件在D:盤中創(chuàng)立一個讀寫文件,順序將各節(jié)點信息保存進去,代碼為:struct stu *baoc(struct stu *head)/保存文件FILE *fp;struct stu *p=head;if(head->next=NULL)printf("*通訊錄為空!*nnn");else if(fp=fopen("D:班級通訊錄.txt","w")=NULL)printf(&
12、quot;can't open file!n");exit(0);while(p->next!=NULL)fwrite(p->next,sizeof(struct stu),1,fp);p=p->next;fclose(fp);printf("保存文件成功!nn");return head;運行如圖:七、釋放結點退出系統(tǒng)用指針p掃描鏈表,頭指針逐步后移,釋放結點p,代碼如下:void sf(struct stu *head)struct stu *p=head ;printf("釋放鏈表:n");while(p!=NU
13、LL)head=head->next;free(p);p=head;printf("釋放鏈表成功!n");運行如圖; 六、附錄:完整原代碼#include<stdio.h>#include<string.h>#include<stdlib.h>#include<windows.h>struct stu char name100;/姓名int xh;/學號int grade;/年級char cel15;/ char tel50;/ char mail50;/郵件char add100;/地址char post15;/ st
14、ruct stu *next;struct stu *charu(struct stu *head,struct stu *q)/插入新結點struct stu *p;for(p=head;p->next!=NULL;p=p->next);p->next=q;q->next=NULL;return head;void search(struct stu *head)/查找結點并輸出struct stu *p;int a;/要查找學生的學號if(head->next=NULL)printf("*通訊錄為空!*nnn");elseprintf(&q
15、uot;t輸入要查詢學生學號:");scanf("%d",&a);for(p=head->next;p->next!=NULL;p=p->next)if(p->xh=a)printf(" 要查找的學生信息為:n");printf(" 姓名:");puts(p->name);printf("t學號: ");printf("%d",p->xh);printf("t年級:");printf("%dn",p-&
16、gt;grade);printf("t :");puts(p->cel);printf("t :");puts(p->tel);printf("t郵箱:");puts(p->mail);printf("t地址");puts(p->add);printf("t :");puts(p->post);printf("t查找成功!"):printf("nnn");break;if(p->xh=a)printf(" 要查
17、找的學生信息為:n");printf(" 姓名:");puts(p->name);printf("t年級:");printf("%dn",p->grade);printf("t :");puts(p->cel);printf("t :");puts(p->tel);printf("t郵箱:");puts(p->mail);printf("t地址");puts(p->add);printf("t :&q
18、uot;);puts(p->post);printf("t查找成功!"):printf("nnn");else printf("no people have found!n");struct stu *del(struct stu *head)/刪除結點struct stu *p,*q;int a;/要刪除學生的學號if(head->next=NULL)printf("*通訊錄為空!*nnn");elseprintf("t輸入要刪除學生學號:");scanf("%d&quo
19、t;,&a);for(p=head,q=p->next;q->xh!=a&&q->next!=NULL;)p=p->next;q=p->next;if(q->xh=a)p->next=q->next;free(q);printf("刪除成功!n");else printf("no people have found!");return head;struct stu *change(struct stu *head)/修改結點內(nèi)容int b,a,c;struct stu *p;if(
20、head->next=NULL)printf("*通訊錄為空!*nnn");elseprintf(" 輸入要修改學生學號:");scanf("%d",&a);for(p=head->next;p!=NULL;p=p->next)if(p->next->xh=a)start:printf(" 輸入想要修改什么?n");printf("ttt1:修改姓名n");printf("ttt2:修改學號n");printf("ttt3:修改
21、年級n");printf("ttt4: n");printf("ttt5: n");printf("ttt6:郵件n");printf("ttt7:地址n");printf("ttt8: n");printf(" 請輸入你的選擇:");scanf("%d",&b);switch(b)case 1:printf("t輸入新姓名:");scanf("%s",p->name);break;case
22、2:printf("t輸入新學號:");scanf("%d",&p->xh);break;case 3:printf("t輸入新的班級:");scanf("%d",&p->grade);break;case 4:printf("t輸入新的 號:");scanf("%s",p->cel);break;case 5:printf("t輸入新的 號:");scanf("%s",p->tel);break
23、;case 6:printf("t輸入新的郵箱:");scanf("%s",p->mail);break;case 7:printf("t輸入新的地址:");scanf("%s",p->add);break;case 8:printf("t輸入新的 ;");scanf("%s",p->post);break;default: printf("輸入操作錯誤,請重新輸入:"); printf("修改成功!n");print
24、f(" 是否要修改其他項? 1:是 2:否n");printf(" 請輸入你的選擇:");scanf("%d",&c);switch(c)case 1:goto start;case 2:break;return head;void printall(struct stu *head)/輸出全部通訊錄struct stu *p=head->next;while(1)if(p=NULL) printf("*通訊錄為空!*nnn");break;else if(p->next=NULL)printf
25、(" 姓名:");puts(p->name);printf("t學號:");printf("%dn",p->xh);printf("t年級:");printf("%dn",p->grade);printf("t :");puts(p->cel);printf("t :");puts(p->tel);printf("t郵箱:");puts(p->mail);printf("t地址:"
26、);puts(p->add);printf("t :");puts(p->post);printf("輸出成功!n");printf("nnn");break;else printf(" 姓名:");puts(p->name);printf("t學號:");printf("%dn",p->xh);printf("t年級:");printf("%dn",p->grade);printf("t :&q
27、uot;);puts(p->cel);printf("t :");puts(p->tel);printf("t郵箱:");puts(p->mail);printf("t地址:");puts(p->add);printf("t :");puts(p->post);printf("n");p=p->next;continue;printf("輸出成功!n");struct stu *baoc(struct stu *head)/保存文件FILE
28、 *fp;struct stu *p=head;if(head->next=NULL)printf("*通訊錄為空!*nnn");else if(fp=fopen("D:班級通訊錄.txt","w")=NULL)printf("can't open file!n");exit(0);while(p->next!=NULL)fwrite(p->next,sizeof(struct stu),1,fp);p=p->next;fclose(fp);printf("保存文件成功!n
29、n");return head;void sf(struct stu *head)struct stu *p=head ;printf("釋放鏈表:n");while(p!=NULL)head=head->next;free(p);p=head;printf("釋放鏈表成功!n");int main()int cz;/操作符struct stu *head,*q;head=(struct stu*)malloc(sizeof(struct stu);head->next=NULL;system("color 2e");/修改dos窗口前背景色,用兩個十六進制數(shù)表示printf("n*C語言課程設計*n");printf(" *班級通訊錄*nnn");printf("*1:新建通訊錄*n");printf("*2:刪除通訊錄*n");printf("*3:修改通訊錄*n");printf("*4:查詢通訊錄*n");printf("*5:顯示全部記錄*n");print
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年食品質檢員的責任與義務試題及答案
- 2025至2030年中國四開平臺凸版印刷機數(shù)據(jù)監(jiān)測研究報告
- 2024-2025學年下學期高二物理教科版同步經(jīng)典題精練之電磁震蕩
- 酒店離職報告申請模板范文(格式18篇)
- 小學六年級語文適應性測試試題及答案
- 汽車維修情景模擬與案例研究試題及答案
- 統(tǒng)計學科目復習題目及答案
- 學校拔河比賽感悟10篇
- 汽車美容師品德素養(yǎng)考察試題及答案
- 擔保公司工作計劃(37篇)
- 商場改造施工方案范本
- 醫(yī)務人員手衛(wèi)生培訓
- 第6課 隋唐時期的中外文化交流 【公開課一等獎創(chuàng)新教學設計】-【教學評一體化】大單元整體教學
- 幼教培訓課件:《幼兒園思維共享的組織與實施》
- 幼兒園清明節(jié)主題班會課件
- 西安經(jīng)濟技術開發(fā)區(qū)管委會招聘筆試真題2024
- 工業(yè)互聯(lián)網(wǎng)平臺的商業(yè)模式與盈利策略
- 2024年09月2024渤海銀行上海分行校園招聘筆試歷年參考題庫附帶答案詳解
- 2025年遼寧省遼漁集團招聘筆試參考題庫含答案解析
- 《員工招聘與選拔》課件
- 南昌起義模板
評論
0/150
提交評論