版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、struct book /* 圖書信息 */ int num; /* 書號*/ char name10; /* 書名*/ char where10; /* 所在書庫 */ char author15; /* 作者*/ char pub20; /* 出版社 */ int count; /* 數(shù)量*/ struct book *next; ; /*輸出模塊 */ void print(struct book *p0) struct book *p; p=p0-next; printf(nntt圖書信息表 ); printf(nn 圖書編號 -圖書名稱 -所在書庫 -作者-出版社 -數(shù)量n); wh
2、ile(p!=null) printf(pt); p=p-next; getch(); /*輸入模塊 */ struct book *creat() struct book *head,*p1,*p2; int i=0; head=p2=(struct book *)malloc(n); head-next=null; printf(nntt 錄入圖書信息 ); printf(nt-); while(1) p1=(struct book *)malloc(n); printf(n 請輸入 圖書編號 (書號為 0 結(jié)束): ); scanf(%d,&p1-num); if(p1-num!
3、=0) printf(nn 書名所在書庫作者出版社圖書數(shù)量n); scanf(%s%s%s%s%d,p1-name,p1-where,p1-author,p1-pub,&p1-count); p2-next=p1; p2=p1; i+; else break; p2-next=null; free(p1); printf(ntt-); printf(ntt %d 種書錄入完畢 ,i); getch(); return head; /*查找模塊 */ void find(struct book *p0) char name10; int flag=1; struct book *p; p
4、=p0-next; printf( 請輸入要查找的書名: n); scanf(%s,name); for(p=p0;p;p=p-next) if(strcmp(p-name,name)=0) printf(nn 圖書編號 -圖書名稱 -所在書庫 -作者-出版社 -數(shù)量n); printf(pt); flag=0; break; if(flag) printf(n 暫無此圖書信息 n); getch(); /*刪除模塊 */ void del(struct book *p0) char name10; int flag=1; struct book *p; p=p0; printf( 請輸入要?jiǎng)h
5、除的書名: n); scanf(%s,name); while(p!=null) if(strcmp(p-name,name)=0) p0-next=p-next; /* 后續(xù)節(jié)點(diǎn)連接到前驅(qū)節(jié)點(diǎn)之后*/ free(p); printf(t 該書資料已刪除 .); flag=0; break; p0=p; p=p-next; if(flag) printf(nt無此圖書信息。 ); getch(); /*增加模塊 */ void insert(struct book *p0) struct book *p; p=(struct book *)malloc(n); while(1) printf(
6、n 請輸入要增加的圖書編號 (書號為 0 退出): ); scanf(%d,&p-num); if(p-num!=0) if(p0-next!=null&p0-next-num=p-num) /*找到重號 */ p=p-next; free(p); printf(t 該書已存在 ); else printf(nn 書名所在書庫作者出版社圖書數(shù)量n); scanf(%s%s%s%s%d,p-name,p-where,p-author,p-pub,&p-count); p-next=p0-next; p0-next=p; printf(t 已成功插入 .); else br
7、eak; getch(); /*修改模塊 */ void modify(struct book *p0) char name10; int flag=1; int choice; struct book *p; p=p0-next; printf( 請輸入要修改的書名: n); scanf(%s,name); while(p!=null&flag=1) if(strcmp(p-name,name)=0) printf(nt 請選擇要修改的項(xiàng): ); printf(nt 1. 修改圖書編號 n); printf(nt 2. 修改圖書所在書庫 n); printf(nt 3. 修改圖書作者
8、 n); printf(nt 4. 修改圖書出版社 n); printf(nt 5. 修改圖書庫存量 n); scanf(%d,&choice); switch(choice) case 1: printf(n 請輸入新的圖書編號 :); scanf(%d,p-num); break; case 2: printf(n 請輸入新的圖書書庫 :); scanf(%s,p-where); break; case 3: printf(n 請輸入新的圖書作者 :); scanf(%s,p-author); break; case 4: printf(n 請輸入新的圖書出版社 :); scanf
9、(%s,p-pub); break; case 5: printf(n 請輸入新的圖書庫存量 :); scanf(%d,p-count); break; printf(nt 該項(xiàng)已成功修改。 nt 新的圖書信息: ); printf(nn 圖書編號 -圖書名稱 -所在書庫 -作者-出版社 -數(shù)量n); printf(pt); flag=0; p0=p; p=p0-next; if(flag) printf(nt暫無此圖書信息。 ); getch(); /*讀文件 */ struct book *read_file() int i=0; struct book *p,*p1,*head=null
10、; file *fp; if(fp=fopen(library.txt,rb)=null) printf(nnnnn t*庫文件不存在,請創(chuàng)建!*); getch(); return null; head=(struct book *)malloc(n); p1=head; head-next=null; printf(n 已有圖書信息: ); printf(nn 圖書編號 -圖書名稱 -所在書庫 -作者-出版社 -數(shù)量n); while(!feof(fp) p=(struct book *)malloc(n); /*開辟空間以存放的取得信息*/ while(fscanf(fp,%d%s%s%
11、s%s%d,&p-num,p-name,p-where,p-author,p-pub,&p-count)!=eof) printf(pt); i+; p1-next=p; p1=p; p1-next=null; fclose(fp); printf(n 共種%d 圖書信息 ,i); printf(nnn 文件中的信息以正確讀出。按任意鍵進(jìn)入主菜單。); getch(); return (head); /*保存文件 */ void save(struct book *head) file *fp; struct book *p; fp=fopen(library.txt,wb);
12、 /*以只寫方式打開二進(jìn)制文件*/ if(fp=null) /* 打開文件失敗 */ printf(n= 打開文件失敗 !n); getch(); return ; else for(p=head-next;p!=null;p=p-next) fprintf(fp,%d %s %s %s %s %dn,p-num,p-name,p-where,p-author,p-pub,p-count); fclose(fp); printf(nt 保存文件成功 !n); void main() struct book *head=null; int choice=1; head=read_file();
13、if(head=null) printf(ntt*); getch(); head=creat(); do system(cls) ; printf(tt-welcome-n); printf(nnt 歡迎您, 圖書管理員 .n); printf(nnnnn); printf(nt 請選擇: ); printf(nt 1. 查詢圖書信息 n); printf(nt 2. 修改圖書信息 n); printf(nt 3. 增加圖書信息 n); printf(nt 4. 刪除圖書信息 n); printf(nt 5. 顯示所有圖書信息 n); printf(nt 0. 退出系統(tǒng) n); scanf(%d,&choice); switch(choice) case 1: find(head
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(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ǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年大型活動(dòng)臨時(shí)車位包銷及安保服務(wù)合同4篇
- 2025至2030年中國工業(yè)180型機(jī)控制器數(shù)據(jù)監(jiān)測研究報(bào)告
- 《生化氨基酸I》課件
- 2025年鉆嘴項(xiàng)目可行性研究報(bào)告
- 2025年草箱子項(xiàng)目可行性研究報(bào)告
- 2025年管風(fēng)琴項(xiàng)目可行性研究報(bào)告
- 2025至2030年中國二乙醚乙二醇數(shù)據(jù)監(jiān)測研究報(bào)告
- 2025年熱熔反光涂料項(xiàng)目可行性研究報(bào)告
- 2025年明葉菜項(xiàng)目可行性研究報(bào)告
- 2025年臥式中心機(jī)主軸項(xiàng)目可行性研究報(bào)告
- 教育系統(tǒng)后備干部面試題目
- 40篇短文搞定高中英語3500單詞
- 高分子材料完整版課件
- DB37∕T 5118-2018 市政工程資料管理標(biāo)準(zhǔn)
- 大氣紅色商務(wù)展望未來贏戰(zhàn)集團(tuán)年會(huì)PPT模板課件
- T∕CAWA 002-2021 中國疼痛科專業(yè)團(tuán)體標(biāo)準(zhǔn)
- 住宅工程公共區(qū)域精裝修施工組織設(shè)計(jì)(217頁)
- 冷卻塔技術(shù)要求及質(zhì)量標(biāo)準(zhǔn)介紹
- (完整版)項(xiàng)目工程款收款收據(jù)
- 井點(diǎn)降水臺(tái)班記錄表
- 奇瑞汽車4S店各類表格模板
評論
0/150
提交評論