91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言實現圖書管理系統

發布時間:2020-09-13 15:27:31 來源:腳本之家 閱讀:224 作者:T_tangc 欄目:編程語言

本文實例為大家分享了C語言實現圖書管理系統的具體代碼,供大家參考,具體內容如下

一、分析過程

首先此程序需要實現輸入、增加、刪除、查詢、輸出的五大功能,則首先需要設置一個菜單鍵,讓用戶可以選擇不同的功能,完成不同的操作,然后編寫不同的函數實現不同的功能,在這個過程中注意要人性化,讓用戶方便,直觀的進行操作。

二、算法

三、函數模塊介紹

 1錄入模塊:本模塊主要執行信息的錄入功能

 2瀏覽模塊:本模塊主要是執行把已有信息輸出瀏覽功能

 3查詢模塊:本模塊主要是按照圖書名查找圖書的相關信息

 4刪除模塊:主要是執行刪除圖書信息的功能

 5退出模塊:方便用戶離開

四、源程序

#include<stdio.h> 
#include<math.h> 
#include<string.h> 
#include<stdlib.h> 
 
 
struct books_list 
{ 
 
 char author[20]; /*作者名*/ 
 char bookname[20]; /*書名*/ 
 char publisher[20]; /*出版單位*/ 
 char pbtime[15]; /*出版時間*/ 
 char loginnum[10]; /*登陸號*/ 
 float price;  /*價格*/ 
 char classfy[10]; /*分類號*/ 
 struct books_list * next; /*鏈表的指針域*/ 
}; 
 
struct books_list * Create_Books_Doc(); /*新建鏈表*/ 
void InsertDoc(struct books_list * head); /*插入*/ 
void DeleteDoc(struct books_list * head , int num);/*刪除*/ 
void Print_Book_Doc(struct books_list * head);/*瀏覽*/ 
void search_book(struct books_list * head); /*查詢*/ 
void save(struct books_list * head);/*保存數據至文件*/ 
 
/*新建鏈表頭節點*/ 
struct books_list * Create_Books_Doc() 
{ 
 struct books_list * head; 
 head=(struct books_list *)malloc(sizeof(struct books_list)); /*分配頭節點空間*/ 
 head->next=NULL; /*頭節點指針域初始化,定為空*/ 
 return head; 
} 
 
/*保存數據至文件*/ 
void save(struct books_list * head) 
{ 
 struct books_list *p; 
 FILE *fp; 
 p=head; 
 fp=fopen("data.txt","w+"); /*以寫方式新建并打開 data.txt文件*/ 
 fprintf(fp,"┏━━━┳━━━━━┳━━━━━┳━━━━━┳━━━━━━┳━━━┳━━━━┓\n"); /*向文件輸出表格*/ 
 fprintf(fp,"┃登錄號┃ 書 名 ┃ 作 者┃ 出版單位 ┃ 出版時間 ┃分類號┃ 價格 ┃\n"); 
 fprintf(fp,"┣━━━╋━━━━━╋━━━━━╋━━━━━╋━━━━━━╋━━━╋━━━━┫\n"); 
 /*指針從頭節點開始移動,遍歷至尾結點,依次輸出圖書信息*/ 
 while(p->next!= NULL) 
 { 
 p=p->next; 
 fprintf(fp,"┃%-6.6s┃%-10.10s┃%-10.10s┃%-10.10s┃%-12.12s┃%-6.6s┃%.2f ┃\n",p->loginnum,p->bookname,p->author,p->publisher,p->pbtime,p->classfy,p->price); 
 } 
 fprintf(fp,"┗━━━┻━━━━━┻━━━━━┻━━━━━┻━━━━━━┻━━━┻━━━━┛\n"); 
 fclose(fp); 
 printf("  已將圖書數據保存到 data.txt 文件\n"); 
} 
 
/*插入*/ 
void InsertDoc(struct books_list *head) 
{ 
 /*定義結構體指針變量 s指向開辟的新結點首地址 p為中間變量*/ 
 struct books_list *s, *p; 
 char flag='Y'; /*定義flag,方便用戶選擇重復輸入*/ 
 p=head; 
 /*遍歷到尾結點,p指向尾結點*/ 
 while(p->next!= NULL) 
 { 
 p=p->next; 
 } 
 /*開辟新空間,存入數據,添加進鏈表*/ 
 while(flag=='Y'||flag=='y') 
 { 
 s=(struct books_list *)malloc(sizeof(struct books_list)); 
 printf("\n  請輸入圖書登陸號:"); 
 fflush(stdin); 
 scanf("%s",s->loginnum); 
 printf("\n  請輸入圖書書名:"); 
 fflush(stdin); 
 scanf("%s",s->bookname); 
 printf("\n  請輸入圖書作者名:"); 
 fflush(stdin); 
 scanf("%s",s->author); 
 printf("\n  請輸入圖書出版社:"); 
 fflush(stdin); 
 scanf("%s",s->publisher); 
 printf("\n  請輸入圖書出版時間:"); 
 fflush(stdin); 
 scanf("%s",s->pbtime); 
 printf("\n  請輸入圖書分類號:"); 
 fflush(stdin); 
 scanf("%s",s->classfy); 
 printf("\n  請輸入圖書價格:"); 
 fflush(stdin); 
 scanf("%f",&s->price); 
 printf("\n"); 
 p->next=s; /*將新增加的節點添加進鏈表*/ 
 p=s; /*p指向尾節點,向后移*/ 
 s->next=NULL; 
 printf("  ━━━━ 添加成功!━━━━"); 
 printf("\n  繼續添加?(Y/N):"); 
 fflush(stdin); 
 scanf("%c",&flag); 
 printf("\n"); 
 if(flag=='N'||flag=='n') 
 {break;} 
 else if(flag=='Y'||flag=='y') 
 {continue;} 
 } 
 save(head); /*保存數據至文件*/ 
 return; 
} 
 
/*查詢操作*/ 
 
void search_book(struct books_list *head) 
{ 
 struct books_list * p; 
 char temp[20]; 
 p=head; 
 if(head==NULL || head->next==NULL) /*判斷數據庫是否為空*/ 
 { 
 printf(" ━━━━ 圖書庫為空!━━━━\n"); 
 } 
 else 
 { 
 printf("請輸入您要查找的書名: "); 
 fflush(stdin); 
 scanf("%s",temp); 
 /*指針從頭節點開始移動,遍歷至尾結點,查找書目信息*/ 
 while(p->next!= NULL) 
 { 
 p=p->next; 
 if(strcmp(p->bookname,temp)==0) 
 { 
 printf("\n圖書已找到!\n"); 
 printf("\n"); 
 printf("登錄號: %s\t\n",p->loginnum); 
 printf("書名: %s\t\n",p->bookname); 
 printf("作者名: %s\t\n",p->author); 
 printf("出版單位: %s\t\n",p->publisher); 
 printf("出版時間: %s\t\n",p->pbtime); 
 printf("分類號: %s\t\n",p->classfy); 
 printf("價格: %.2f\t\n",p->price); 
 } 
 if(p->next==NULL) 
 { 
 printf("\n查詢完畢!\n"); 
 } 
 } 
 } 
 return; 
} 
 
 /*瀏覽操作*/ 
 
void Print_Book_Doc(struct books_list * head) 
{ 
 struct books_list * p; 
 if(head==NULL || head->next==NULL) /*判斷數據庫是否為空*/ 
 { 
 printf("\n  ━━━━ 沒有圖書記錄! ━━━━\n\n"); 
 return; 
 } 
 p=head; 
 printf("┏━━━┳━━━━━┳━━━━━┳━━━━━┳━━━━━━┳━━━┳━━━━┓\n"); 
 printf("┃登錄號┃ 書 名 ┃ 作 者┃ 出版單位 ┃ 出版時間 ┃分類號┃ 價格 ┃\n"); 
 printf("┣━━━╋━━━━━╋━━━━━╋━━━━━╋━━━━━━╋━━━╋━━━━┫\n"); 
 /*指針從頭節點開始移動,遍歷至尾結點,依次輸出圖書信息*/ 
 while(p->next!= NULL) 
 { 
 p=p->next; 
 printf("┃%-6.6s┃%-10.10s┃%-10.10s┃%-10.10s┃%-12.12s┃%-6.6s┃%.2f ┃\n",p->loginnum,p->bookname,p->author,p->publisher,p->pbtime,p->classfy,p->price); /*循環輸出表格*/ 
 } 
 printf("┗━━━┻━━━━━┻━━━━━┻━━━━━┻━━━━━━┻━━━┻━━━━┛\n"); 
 printf("\n"); 
} 
 
/*刪除操作*/ 
void DeleteDoc(struct books_list * head) 
{ 
 struct books_list *s,*p; /*s為中間變量,p為遍歷時使用的指針*/ 
 char temp[20]; 
 int panduan; /*此變量用于判斷是否找到了書目*/ 
 panduan=0; 
 p=s=head; 
 printf("  [請輸入您要刪除的書名]:"); 
 scanf("%s",temp); 
 /*遍歷到尾結點*/ 
 while(p!= NULL) 
 { 
 if(strcmp(p->bookname,temp)==0) 
 { 
 panduan++; 
 break; 
 } 
 p=p->next; 
 } 
 if(panduan==1) 
 { 
 for(;s->next!=p;) /*找到所需刪除卡號結點的上一個結點*/ 
 { 
 s=s->next; 
 } 
 s->next=p->next; /*將后一節點地址賦值給前一節點的指針域*/ 
 free(p); 
 printf("\n  ━━━━ 刪除成功! ━━━━\n"); 
 } 
 else /*未找到相應書目*/ 
 { 
 printf("  您輸入的書目不存在,請確認后輸入!\n"); 
 } 
 return; 
} 
 
int main() 
{ 
 struct books_list * head; 
 char choice; 
 head=NULL; 
 for(;;) /*實現反復輸入選擇*/ 
 { 
 printf(" ┏━┓━━━━━━━━━━━━━━━━━━━┏━┓\n"); 
 printf(" ┃ ┃ tony 圖書館管理系統 ┃ ┃\n"); 
 printf(" ┃ ┗━━━━━━━━━━━━━━━━━━━┛ ┃\n"); 
 printf(" ┃ [1]圖書信息錄入 ┃\n"); 
 printf(" ┃   ┃\n"); 
 printf(" ┃ [2]圖書信息瀏覽 ┃\n"); 
 printf(" ┃   ┃\n"); 
 printf(" ┃ [3]圖書信息查詢 ┃\n"); 
 printf(" ┃   ┃\n"); 
 printf(" ┃ [4]圖書信息刪除 ┃\n"); 
 printf(" ┃   ┃\n"); 
 printf(" ┃ [5]退出系統  ┃\n"); 
 printf(" ┃   ┃\n"); 
 printf(" ┃   ┃\n"); 
 printf(" ┗━━━━━━━━━━━━━━━━━━━━━━━┛\n"); 
 printf("  請選擇:"); 
 fflush(stdin); 
 scanf("%c",&choice); 
 if(choice=='1') 
 { 
 if(head==NULL) 
 { 
 head=Create_Books_Doc(); 
 } 
 InsertDoc(head); 
 
 } 
 else if(choice=='2') 
 { 
 Print_Book_Doc(head); 
 } 
 else if(choice=='3') 
 { 
 search_book(head); 
 } 
 else if(choice=='4') 
 { 
 DeleteDoc(head); 
 } 
 
 else if(choice=='5') 
 { 
 printf("\n"); 
 printf(" ━━━━━━━━ 感謝使用圖書管理系統 ━━━━━━━━\n"); 
 break; 
 } 
 else 
 { 
 printf("  ━━━━ 輸入錯誤,請重新輸入!━━━━\n"); 
 
 } 
 } 
 
 return 0; 
} 

五、課程設計總結

通過這一周的課程設計,我感受到做程序一定要有自己的清晰計劃,否則會無處用力,感覺會很亂,當高屋建瓴的有計劃后,然后開始認真嚴謹的設計每一個模塊,要知道用戶的一切輸入都是不可信的,必須想得要全面,要仔細的對待每一個細節,任何一個差錯都有可能讓程序崩潰,這其中有許多的困難,剛開始感覺到束手無策,但是放一放,換個角度想就會豁然開朗,我覺得從這個中感覺到了充實,滿足感,也提醒我以后要多多練練,多上機,積累經驗,爭取設計出更多的好的程序。

更多學習資料請關注專題《管理系統開發》。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

九江市| 正镶白旗| 新和县| 虎林市| 茂名市| 通海县| 双牌县| 江阴市| 白沙| 咸宁市| 汤原县| 交口县| 巴青县| 东安县| 伊宁市| 万州区| 高安市| 博湖县| 莱州市| 那曲县| 丰原市| 新余市| 正安县| 留坝县| 斗六市| 木里| 固始县| 汝州市| 枣庄市| 信丰县| 岳阳县| 红安县| 丹东市| 嘉荫县| 万载县| 荆门市| 通河县| 手机| 雅江县| 沂南县| 阿勒泰市|