數(shù)據(jù)結(jié)構(gòu)課程設計報告有代碼C語言倉庫管理系統(tǒng)_第1頁
數(shù)據(jù)結(jié)構(gòu)課程設計報告有代碼C語言倉庫管理系統(tǒng)_第2頁
數(shù)據(jù)結(jié)構(gòu)課程設計報告有代碼C語言倉庫管理系統(tǒng)_第3頁
數(shù)據(jù)結(jié)構(gòu)課程設計報告有代碼C語言倉庫管理系統(tǒng)_第4頁
數(shù)據(jù)結(jié)構(gòu)課程設計報告有代碼C語言倉庫管理系統(tǒng)_第5頁
已閱讀5頁,還剩21頁未讀, 繼續(xù)免費閱讀

下載本文檔

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

文檔簡介

年5月29日數(shù)據(jù)結(jié)構(gòu)課程設計報告有代碼C語言倉庫管理系統(tǒng)文檔僅供參考系統(tǒng)目標(三號楷體加粗)倉庫管理應用程序系統(tǒng)能夠?qū)崿F(xiàn)信息多次追加入錄、信息顯示、刪除信息、修改信息、查詢信息、價格升序等基本功能,這些功能模塊都用函數(shù)的形式來實現(xiàn)。學生信息保存在文件中,需要時能夠隨時從文件中讀取出來。方便用戶隨時可查詢。進行倉庫管理。第二章系統(tǒng)分析(三號楷體加粗)正文(四號楷體)明確用戶的需求,如操作界面需求,系統(tǒng)功能需求,數(shù)據(jù)的具體流程等。開始運行時界面如下:你能夠根據(jù)所對應的信息提示進行操作便可對其進行數(shù)據(jù)的記錄與查詢。第三章系統(tǒng)設計開 始開 始提示”輸入錯誤”提示”輸入錯誤”按任意鍵能夠繼續(xù)數(shù)據(jù)插入選擇3輸出操作界面選擇1選擇2初始化清空記錄初始化清空記錄輸入數(shù)據(jù)提示按任意鍵,便可返回界面選擇4選擇4數(shù)據(jù)刪除數(shù)據(jù)刪除選擇5選擇5數(shù)據(jù)更新數(shù)據(jù)更新選擇6選擇6數(shù)據(jù)查詢數(shù)據(jù)查詢選擇7選擇7單價單價升序其余輸入其余輸入輸入W/w輸入W/w輸入R/r讀取文件保存文件選擇0選擇0結(jié)束結(jié)束第四章系統(tǒng)實現(xiàn)正文(四號楷體)給出具體的實現(xiàn)環(huán)境(如用什么語言?在什么操作系統(tǒng)?)用C語言編程,用cokeblock編譯器,在windowsxp操作系統(tǒng)下編譯成功。給出主函數(shù)和每個算法的實現(xiàn)代碼。#include<stdio.h>#include<stdlib.h>#include<conio.h>#include<ctype.h>#include<string.h>#defineSIZE100typedefstruct{charname[10];charfam[10];intpay;intnum;}Store;typedefstructnode{Storeelem;structnode*next;}In;In*head=NULL;voidappendInfo();voidList();voidmenu(void);In*Init();voidStart();voidInsert();voidDel();voidrenew();voidWsave();voidRead();voidSortUp();voidPreFile();intmain(){charselect;PreFile();menu();while((select=toupper(getch()))!='0'){system("cls");switch(select){case'1':{Start();system("pause");menu();break;}case'2':{appendInfo();system("pause");menu();break;}case'3':{Insert();system("pause");menu();break;}case'4':{Del();system("pause");menu();break;}case'5':{renew();system("pause");menu();break;}case'6':{List();system("pause");menu();break;}case'7':{SortUp();system("pause");menu();break;}case'W':{Wsave();system("pause");menu();break;}case'R':{Read();system("pause");menu();break;}default:printf("Inputerror!\n");system("pause");menu();break;}}return0;}In*Init(){In*L;L=(In*)malloc(sizeof(In));L->next=NULL;returnL;}voidappendInfo(){inti,j;In*p,*s; A1:printf("請輸入要存放的記錄數(shù):");scanf("%d",&j);if(j<=0){printf("Inputerror!\n");gotoA1;}if(head==NULL){p=Init();head=p;}else{p=head->next;while(p->next!=NULL)p=p->next;}for(i=0;i<j;i++){s=Init();printf("名稱品牌單價數(shù)量\n");scanf("%s",&s->);scanf("%s",&s->elem.fam);scanf("%d",&s->elem.pay);scanf("%d",&s->elem.num);p->next=s;p=s;}}voidList(){In*p;if(head==NULL){printf("Noneofinformationaboutproducts.\n");return;}elsep=head->next;printf("名稱品牌單價數(shù)量\n");while(p!=NULL){printf("%s\t%s\t%d\t%d\n",p->,p->elem.fam,p->elem.pay,p->elem.num);p=p->next;}}voidmenu(){system("cls");printf("||\n");printf("|家電倉庫管理|\n");printf("|請輸入選項編號|\n");printf("||\n");printf("|1--數(shù)據(jù)初始化|\n");printf("|2--創(chuàng)立數(shù)據(jù)表|\n");printf("|3--數(shù)據(jù)插入|\n");printf("|4--數(shù)據(jù)刪除|\n");printf("|5--數(shù)據(jù)更新|\n");printf("|6--數(shù)據(jù)查詢|\n");printf("|7--單價升序|\n");printf("|w--數(shù)據(jù)保存|\n");printf("|r--數(shù)據(jù)讀出|\n");printf("|0--系統(tǒng)退出(exit)|\n");printf("||\n");printf("請輸入你的選擇:");}voidStart(){charcom;printf("你想清空所有資料嗎?(Y/N):");fflush(stdin);com=getchar();if(com=='Y'||com=='y'){printf("已經(jīng)初始化了、、、\n");head=NULL;return;}elseprintf("資料仍在、、、\n");return;}voidInsert(){In*pi,*p;charstr[10];printf("請問要在哪個學生后面插入(輸入姓名):");fflush(stdin);gets(str);pi=Init();printf("名稱品牌單價數(shù)量\n");scanf("%s",&pi->);scanf("%s",&pi->elem.fam);scanf("%d",&pi->elem.pay);scanf("%d",&pi->elem.num);if(head==NULL){printf("前面沒有數(shù)據(jù),默認接在表頭。\n");p=Init();head=p;p->next=pi;}else{p=head->next;while((strcmp(p->,str)!=0)&&p->next!=NULL)p=p->next;if(p->next!=NULL){pi->next=p->next;p->next=pi;}elsep->next=pi;}}voidDel(){In*pi,*p,*s;charstr[10];if(head==NULL){printf("沒有商品資料。\n");return;}printf("請輸入要刪除產(chǎn)品的名稱:");fflush(stdin);gets(str);p=head->next;while((strcmp(p->,str)!=0)&&p->next!=NULL){pi=p;p=p->next;}if(strcmp(p->,str)==0){printf("所刪除的記錄為:\n");printf("%s\t%s\t%d\t%d\n",p->,p->elem.fam,p->elem.pay,p->elem.num);if(p==head->next){s=Init();head=s;s->next=p->next;}elsepi->next=p->next;free(p);}elseprintf("找不到相應的商品資料。\n");}voidrenew(){In*pi,*p,*s;charstr[10];if(head==NULL){printf("沒有商品資料。\n");return;}List();printf("請輸入要更新產(chǎn)品的名稱:");fflush(stdin);gets(str);p=head->next;while((strcmp(p->,str)!=0)&&p->next!=NULL){pi=p;p=p->next;}if(strcmp(p->,str)==0){printf("所要更新的記錄為:\n");printf("%s\t%s\t%d\t%d\n",p->,p->elem.fam,p->elem.pay,p->elem.num);printf("品牌單價數(shù)量\n");scanf("%s",&p->elem.fam);scanf("%d",&p->elem.pay);scanf("%d",&p->elem.num);printf("更新后的記錄為:\n");printf("%s\t%s\t%d\t%d\n",p->,p->elem.fam,p->elem.pay,p->elem.num);}elseprintf("找不到相應的商品資料。\n");}voidWsave(){FILE*fp;In*p;if(head==NULL){printf("你還未有資料。");return;}if((fp=fopen("store.dat","wb"))==NULL)printf("Cannotopenfile!\n");else{for(p=head->next;p!=NULL;p=p->next)if(fwrite(p,sizeof(In),1,fp)!=1)printf("Filewriteerror!\n");}printf("\t\t\t保存成功。\n\n");fclose(fp);}voidRead(){In*p;FILE*fp;if(head==NULL){printf("你還未有資料。");return;}if((fp=fopen("store.dat","rb"))==NULL){printf("CannotOpen.");return;}for(p=head->next;p!=NULL;p=p->next){p=Init();fread(p,sizeof(In),1,fp);printf("%s\t%s\t%d\t%d\n",p->,p->elem.fam,p->elem.pay,p->elem.num);}printf("\n\t\t\t讀取成功\n");fclose(fp);}voidSortUp(){In*p1,*p2,*p3;p3=(In*)malloc(sizeof(In));if(head==NULL){printf("沒有記錄,無法排序。");return;}for(p1=head->next;p1->next!=NULL;p1=p1->next)for(p2=p1->next;p2!=NULL;p2=p2->next)if(p1->elem.pay>p2->elem.pay){p3->elem=p1->elem;p1->elem=p2->elem;p2->elem=p3->elem;}printf("\n已經(jīng)排序好了。\n");List();}voidPreFile(){intFlag=0;In*he,*p,*q;FILE

溫馨提示

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

評論

0/150

提交評論