版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、-PAGE . z. - w -科技大學數(shù) 據(jù) 結(jié) 構(gòu)課 程 設(shè) 計 說 明 書學生:白天磊學 號:1267159204學院:軟件學院專業(yè):軟件工程題目:產(chǎn)品進銷存管理系統(tǒng)指導教師康懿(一)設(shè)計任務(wù)概述針對*一種行業(yè)的庫房的產(chǎn)品進銷存情況進行管理。1、采用一定的存儲結(jié)構(gòu)對庫房的貨品及其數(shù)量進行分類管理;運用鏈表進行存儲,同時用到指針變量,運用循環(huán)存儲,對存儲產(chǎn)品的信息要用到日期結(jié)構(gòu)體和產(chǎn)品結(jié)構(gòu)體,對存儲要用到文件指針以及文件的一些方法的使用。2、可以進行產(chǎn)品類的添加、產(chǎn)品的添加、產(chǎn)品數(shù)量的添加; 首先要找到鏈表的指針變量,對指針變量進行修改,然后再進行產(chǎn)品的出入。3、能夠查詢庫房每種產(chǎn)品的總量
2、、進貨日期、銷出數(shù)量、銷售時間等; 首先要定義一個查詢函數(shù),對產(chǎn)品類的指針變量進行循環(huán)查詢,再對產(chǎn)品的指針變量進行循環(huán)查詢,找到產(chǎn)品時,在調(diào)用顯示產(chǎn)品信息函數(shù),顯示查詢到的產(chǎn)品的各項信息。(二)本設(shè)計所采用的數(shù)據(jù)運用鏈表進行存儲,同時用到指針變量,循環(huán)存儲(三)功能模塊詳細設(shè)計3.1詳細設(shè)計思想1、順序表掛接鏈表的抽象定義類型:ADT sqmountlink 數(shù)據(jù)對象:D=ai|aikindlist,i=1,2,n,n=0 數(shù)據(jù)關(guān)系:R=|ai-1,aiD,i=1,2,3,n 基本操作: InitMountLisr(&L) 操作結(jié)果:構(gòu)造一個空的順序表掛接鏈表L。 KindInsert(&L,
3、n) 初始條件:順序表掛接鏈表L已存在。 操作結(jié)果:向順序表掛接鏈表L中添加N類產(chǎn)品ProductInsert(&L,I,n) 初始條件:順序表掛接鏈表L已存在且要將產(chǎn)品插入的產(chǎn)品類i已存在 操作結(jié)果:向順序表掛接鏈表L中的產(chǎn)品類i中添加N種產(chǎn)品ProQuantity_add(&L,I,e,n) 初始條件:順序表掛接鏈表L已存在且需要添加的產(chǎn)品及產(chǎn)品所屬的類也存在 操作結(jié)果:添加順序表掛接鏈表L的產(chǎn)品類i中的產(chǎn)品e的數(shù)量Visit(&L,i,e) 初始條件:順序表掛接鏈表L已存在且待查詢的產(chǎn)品所屬產(chǎn)品類i也存在 操作結(jié)果:在順序表掛接鏈表L中查詢產(chǎn)品e的各項信息DisplayList(&L)
4、初始條件:順序表掛接鏈表L已存在 操作結(jié)果:現(xiàn)實順序表掛接鏈表L的容3.2核心代碼#include#include#include#define ok 1#define error 0#define overflow 0#define SQMOUNTLINK_INIT_SIZE 100#define SQMOUNTLINKINCREMENT 10typedef struct date int year; int month; int day;date; /日期typedef struct productlnode char pname30; /產(chǎn)品名稱 int totalquantity; /
5、產(chǎn)品總量 date goodsdate; /進貨日期 int salesquantity; /消除數(shù)量 date salestime; /銷售時間 struct productlnode *ne*tproduct;productlnode,*plinklist;typedef struct kindlnode productlnode *firstproduct; char pkindname30;kindlnode;typedef struct kindlnode *kindelem; int length; int listsize;sqmountlink;int InitMountLis
6、t(sqmountlink &L) /初始化一個空的順序表掛接鏈表L int i; L.kindelem=(kindlnode*)malloc(SQMOUNTLINK_INIT_SIZE*sizeof(kindlnode); if(!L.kindelem) e*it(overflow); L.length=0; L.listsize=SQMOUNTLINK_INIT_SIZE; for(i=0;i=L.listsize) newbase=(kindlnode*)realloc(L.kindelem,(L.listsize+n)*sizeof(kindlnode); if(!newbase) e
7、*it(overflow); L.kindelem=newbase; L.listsize+=n; printf(需添加的產(chǎn)品類名稱:n); for(i=0;in;i+) scanf(%s,&L.kindelemL.length.pkindname); L.kindelemL.length.firstproduct=NULL; L.length+; return ok;/KindInsertint ProductInsert(sqmountlink &L,char pkindname2,int n) /向順序表掛接鏈表L的*產(chǎn)品類中添加N個產(chǎn)品 plinklist p,q; int k,j;
8、for(k=0;kpname),&(q-totalquantity),&(q-goodsdate).year),&(q-goodsdate).month),&(q-goodsdate).day),&(q-salesquantity),&(q-salestime).year),&(q-salestime).month),&(q-salestime).day); q-ne*tproduct=NULL; (L.kindelemk).firstproduct=q; for(j=1;jpname),&(p-totalquantity),&(p-goodsdate).year),&(p-goodsdate
9、).month),&(p-goodsdate).day),&(p-salesquantity),&(p-salestime).year),&(p-salestime).month),&(p-salestime).day); p-ne*tproduct=q-ne*tproduct; q-ne*tproduct=p; q=p; else for(q=L.kindelemk.firstproduct; ;q=q-ne*tproduct) if(!(q-ne*tproduct) break; printf(需添加產(chǎn)品的名稱、總量、進貨日期、銷售數(shù)量、銷售時間:n); for(j=0;jpname),&
10、(p-totalquantity),&(p-goodsdate).year),&(p-goodsdate).month),&(p-goodsdate).day),&(p-salesquantity),&(p-salestime).year),&(p-salestime).month),&(p-salestime).day); p-ne*tproduct=q-ne*tproduct; q-ne*tproduct=p; q=p; return ok;/ProductInsertvoid ProQuantity_add(sqmountlink &L,char pkindname1,char pnam
11、e1,int n) /添加順序表掛接鏈表L的*產(chǎn)品類中的*產(chǎn)品的總量,且需添加的產(chǎn)品總量為n int i,k; plinklist p; for(i=0;iL.length;i+) if(strcmp(L.kindelemi).pkindname,pkindname1)!=0) continue; else break; if(ine*tproduct) k=strcmp(p-pname,pname1); if(k=0) p-totalquantity=p-totalquantity+n; printf(查看添加后產(chǎn)品的各項輸出:%s %d %d,%d,%d %d %d,%d,%dn,p-pn
12、ame,p-totalquantity,(p-goodsdate).year,(p-goodsdate).month,(p-goodsdate).day,p-salesquantity,(p-salestime).year,(p-salestime).month,(p-salestime).day); /ProQuantity_addvoid ProQuantity_subtract(sqmountlink &L,char pkindname4,char pname4,int n) /添加順序表掛接鏈表L的*產(chǎn)品類中的*產(chǎn)品銷出數(shù)量,且銷出的數(shù)量n int i,k; plinklist p;
13、for(i=0;iL.length;i+) if(strcmp(L.kindelemi).pkindname,pkindname4)!=0) continue; else break; if(ine*tproduct) k=strcmp(p-pname,pname4); if(k=0) p-salesquantity=p-salesquantity+n; printf(查看添加后產(chǎn)品的各項輸出:%s %d %d,%d,%d %d %d,%d,%dn,p-pname,p-totalquantity,(p-goodsdate).year,(p-goodsdate).month,(p-goodsda
14、te).day,p-salesquantity,(p-salestime).year,(p-salestime).month,(p-salestime).day); /ProQuantity_subtractvoid Visit(sqmountlink &L,char pkindname3,char pname3) /在順序表掛接鏈表L中,查詢屬于*產(chǎn)品類的*產(chǎn)品的各項信息 int i,k; plinklist p; for(i=0;iL.length;i+) if(strcmp(L.kindelemi).pkindname,pkindname3)!=0) continue; else bre
15、ak; if(ine*tproduct) k=strcmp(p-pname,pname3); if(k=0) break; if(k!=0) printf(此產(chǎn)品不存在:n); else printf(輸出待查詢產(chǎn)品的各項信息:n); printf(產(chǎn)品類*產(chǎn) 品*產(chǎn)品總量*進 貨 日 期*銷售數(shù)量*銷 售 時 間n); printf(%s %s %d %d,%d,%d %d %d,%d,%dn,(L.kindelemi).pkindname,p-pname,p-totalquantity,(p-goodsdate).year,(p-goodsdate).month,(p-goodsdate)
16、.day,p-salesquantity,(p-salestime).year,(p-salestime).month,(p-salestime).day); /Visitvoid DisplayList(sqmountlink &L) /顯示各產(chǎn)品所屬產(chǎn)品類、產(chǎn)品名稱、產(chǎn)品總量、進貨日期、銷售數(shù)量、銷售時間 int i; plinklist p; printf(產(chǎn)品類*產(chǎn) 品*產(chǎn)品總量*進 貨 日 期*銷售數(shù)量*銷 售 時 間n); for(i=0;ine*tproduct) printf(%s %s %d %d,%d,%d %d %d,%d,%dn,(L.kindelemi).pkindn
17、ame,p-pname,p-totalquantity,(p-goodsdate).year,(p-goodsdate).month,(p-goodsdate).day,p-salesquantity,(p-salestime).year,(p-salestime).month,(p-salestime).day); /DisplayListvoid menu_operation()/操作菜單 printf(n); printf(輸入所要執(zhí)行的操作:n); printf(1、產(chǎn)品類添加: n); printf(2、產(chǎn)品添加: n); printf(3、產(chǎn)品數(shù)量添加: n); printf(4、
18、產(chǎn)品售出: n); printf(5、查詢產(chǎn)品: n); printf(0、退出程序: n); printf(n);/mene_operation/*主程序*/void main(void) int order; int i,n; char a30; char b30; sqmountlink L; InitMountList(L); printf(輸入時間時請按照年,月,日”格式輸入.n); loop: menu_operation(); printf(輸入命令:); scanf(%d,&order); switch(order) case 1: printf(需添加產(chǎn)品類的個數(shù):); sc
19、anf(%d,&i); KindInsert(L,i); printf(修改后的產(chǎn)品庫存管理表:n); DisplayList(L); goto loop; case 2: printf(需添加產(chǎn)品所屬產(chǎn)品類的名稱:); scanf(%s,&a); printf(需向此產(chǎn)品類添加產(chǎn)品的個數(shù):); scanf(%d,&i); ProductInsert(L,a,i); printf(修改后的產(chǎn)品庫存管理表:n); DisplayList(L); goto loop; case 3: printf(輸入需添加數(shù)量的產(chǎn)品所屬產(chǎn)品類的名稱:); scanf(%s,&a); printf(輸入需添加數(shù)量的產(chǎn)品的名稱:); scanf(%s,&b); printf(輸入需添加產(chǎn)品的數(shù)量:); scanf(%d,&n); ProQuantity_add(L,a,b,n); printf(修改后的產(chǎn)品庫存管理表:n); DisplayList(L); goto loop; case 4: printf(輸入售出產(chǎn)品所屬產(chǎn)品類的名稱:); scanf(%s,&a); printf(輸入售出產(chǎn)品的名稱:); scanf(%s,&b); printf(輸入售出產(chǎn)品的數(shù)量:); scanf(%d,&n); ProQuantity_subtract(L,a,b,n); p
溫馨提示
- 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. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 軟件開發(fā)二手房買賣合同樣本
- 城市排水招投標廉潔合同模板
- 墻繪裝飾施工合同
- 新能源項目招投標合同風險防范
- 房屋戶外照明安裝合同
- 教育培訓機構(gòu)裝修施工合同
- 國際實驗室地暖系統(tǒng)安裝工程合同
- 勞動合同簽訂與解除規(guī)范
- 水利工程建造師聘用合同范例
- 交通運輸設(shè)備維修合同
- 2024年云網(wǎng)安全應(yīng)知應(yīng)會考試題庫
- 小學道德與法治《中華民族一家親》完整版課件部編版
- DL-T 5190.1-2022 電力建設(shè)施工技術(shù)規(guī)范 第1部分:土建結(jié)構(gòu)工程(附條文說明)
- 經(jīng)緯度數(shù)轉(zhuǎn)換工具
- 一年級家長進課堂電的知識(課堂PPT)
- 內(nèi)分泌疾病內(nèi)分泌疾病診療規(guī)范
- (完整word版)手卡模板(總2頁)
- 高壓蒸汽滅菌鍋(SANYO)
- 電飯煲項目財務(wù)分析表
- 部編版《道德與法治》三年級上冊教案(全冊)
- 最新高中物理學考公式大全
評論
0/150
提交評論