版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、#include #include #include #include #include #include using namespace std;#define NULL 0#define LEN sizeof(struct student) int const N=20;void Menu(); void Pass();int n=0; /定義一個(gè)全局變量統(tǒng)計(jì)職工人數(shù) /-定義一個(gè)職工信息的結(jié)構(gòu)體struct student char nameN; /用來存放姓名char sexN; /用來存放性別long id; /用來存放編號float paid3; /用來存放工資int total;
2、 /用來存放總工資struct student *next;/-職工類class Information public:Information() ; /構(gòu)造函數(shù). Information() ; /析構(gòu)函數(shù). student *creat(); /建立鏈表void output(student *head); /顯示職工信息int count(student *head); /定義函數(shù)count()統(tǒng)計(jì)職工總數(shù)student *insert(student*head); /指針函數(shù)*insert()用來添加職工信息.student *cancel(student *head,long id)
3、; /指針函數(shù)*cancel()用來刪除職工信息.student *find(student *head,long id); /指針函數(shù)*find()用來查找職工信息.student *modify(student *head,long id); /指針函數(shù)*modife()用來修改職工的信息.void paixu(student *head); /定義paixu()函數(shù)將職工的總額從大到小排列并輸出void average(student *head); /定義職工工資平均值的函數(shù)void save(student *head); /保存文件信息student *Read(); /讀取文件信
4、息private:student *p1,*p2,*p3,*head,st; ;Information:Information() cout *n;cout -n; cout *nn; Information:Information() cout n;cout n;cout 本系統(tǒng)管理員 n;cout n;cout n;cout -n; cout n;cout n;cout 歡迎下次使用 n;cout n;cout n;cout 再見 n;cout n;cout建立鏈表信息student *Information:creat(void) /定義一個(gè)指向struct student的結(jié)構(gòu)體指針函
5、數(shù)*creat()用來錄入職工信息. char chN;n=0; /用來存放職工姓名 p1=p2=(student *)malloc(LEN);/調(diào)用malloc()函數(shù)用來開辟一個(gè)新的存儲單元 cout -endl;coutch;head=NULL; /給指針head賦初值while (strcmp(ch,#)!=0) /調(diào)用字符比較函數(shù)strcmp()用來判斷是否繼續(xù)輸入p1=(student *)malloc(LEN); /調(diào)用malloc()函數(shù)用來開辟一個(gè)新的存儲單元strcpy(p1-name,ch); /將循環(huán)結(jié)構(gòu)前面輸入的姓名復(fù)制到結(jié)構(gòu)體名為p1的數(shù)組name中coutp1-s
6、ex;coutp1-id;while(p1-id)id) /判斷輸入的編號是否有效(個(gè))cout0p1-id; coutp1-paid0;while(p1-paid0)paid0) /判斷輸入的分?jǐn)?shù)是否有效(=0 =)cout0p1-paid0; coutp1-paid1;while(p1-paid1)paid1) /判斷輸入的分?jǐn)?shù)是否有效(=0 =)cout0p1-paid1; coutp1-paid2;while(p1-paid2)paid2) /判斷輸入的分?jǐn)?shù)是否有效(=0 =)cout0p1-paid2; p1-total=p1-paid0+p1-paid1+p1-paid2; /計(jì)算
7、總額 if(n=0)head=p1; /如果是輸入第一組職工信息就將指針p1賦給指針headelse p2-next=p1; /否則將p1賦給p2所指結(jié)構(gòu)體的next指針p2=p1; /將指針p1賦給指針p2n+; /將職工人數(shù)n的值加1coutch; /將輸入的姓名存放到字符數(shù)組ch中p2-next=NULL; /將p2所指結(jié)構(gòu)體的next指針重新賦空值return (head);/將輸入的第一組職工信息返回/-定義output()函數(shù)將職工的信息從頭指針?biāo)竷?nèi)容開始輸出void Information:output(student *head) system(cls);if(head=NU
8、LL) cout 這是一個(gè)空表,請先輸入員工信息!n;elsecout-n;cout *職工工資信息表*n;cout-n; cout|編 號| |姓 名| |性別| |基本工資| |加班工資| |其他獎(jiǎng)金| |總額|n;cout-n; p1=head; /將頭指針賦給p docoutsetw(6)idsetw(10)namesetw(10)sexsetw(10)paid0setw(10)paid1setw(12)paid2setw(12)totalendl;coutnext; /將下一組職工信息的next指針賦給pwhile(p1!=NULL); /若指針p非空則繼續(xù),目的是把所有的職工信息都
9、傳給指針p然后輸出./-統(tǒng)計(jì)職工人數(shù)的函數(shù)int Information:count(struct student *head) /定義函數(shù)count()統(tǒng)計(jì)職工總數(shù)if(head=NULL)return(0); /若指針head為空返回值為0else return(1+count(head-next); /函數(shù)的遞歸調(diào)用/-添加職工的成績的函數(shù)student *Information:insert( student *head) /插入新結(jié)點(diǎn)定義一個(gè)指向struct student的結(jié)構(gòu)體指針函數(shù)*insert()用來添加職工信息.system(cls);coutt-nendl;p1=(st
10、udent *)malloc(LEN); /使p1指向插入的新結(jié)點(diǎn)coutp1-id;while(p1-id)id)cout0p1-id; /將輸入的編號存放到p1所指結(jié)構(gòu)體的數(shù)組id中 coutp1-name; /將輸入的姓名存放到結(jié)構(gòu)體名為p1的數(shù)組name中coutp1-sex; coutp1-paid0;while(p1-paid0)paid0)cout0p1-paid0; /將輸入的基本工資存放到p1所指結(jié)構(gòu)體的數(shù)組paid中coutp1-paid1;while(p1-paid1)paid1)cout0p1-paid1; /將輸入的加班工資存放到p1所指結(jié)構(gòu)體的數(shù)組paid中cout
11、p1-paid2;while(p1-paid2)paid2)cout0p1-paid2; /將輸入的其他獎(jiǎng)金存放到p1所指結(jié)構(gòu)體的數(shù)組paid中 p1-total=p1-paid0+p1-paid1+p1-paid2;/計(jì)算總分 p2=head; /將頭指針賦給p2if(head=NULL) /若沒調(diào)用次函數(shù)以前的頭指針head為空head=p1;p1-next=NULL; /則將p1賦給頭指針head并將p1所指結(jié)構(gòu)體成員指針next賦空值else while(p1-idp2-id)&(p2-next!=NULL)p3=p2; /p3指向原p2指向的結(jié)點(diǎn)p2=p2-next; /p2后移一個(gè)
12、結(jié)點(diǎn)if(p1-idid)if(head=p2)p1-next=head;head=p1; /插入到第一個(gè)結(jié)點(diǎn)之前else p3-next=p1;p1-next=p2; /插入到p3所指結(jié)點(diǎn)之后elsep2-next=p1;p1-next=NULL; /插入到尾結(jié)點(diǎn)之后n+; /將職工人數(shù)加1coutt-刪除職工信息student *Information:cancel(student *head,long id) /定義一個(gè)指向struct student的結(jié)構(gòu)體指針函數(shù)*delete()用來刪除考生信息. system(cls);if(head=NULL) /若調(diào)用次函數(shù)以前的頭指針hea
13、d為空 return(head);elsep1=head; /否則將頭指針賦給p1while(id!=p1-id&p1-next!=NULL) /尋找要?jiǎng)h除的結(jié)點(diǎn)當(dāng)p1所指的職工編號不是輸入的職工編號并且p1所指的next指針不為空p2=p1;p1=p1-next; /p2指向原p1指向的結(jié)點(diǎn)p1后移一個(gè)結(jié)點(diǎn)if(id=p1-id) /如果輸入的職工編號是p1所指的職工編號/結(jié)點(diǎn)找到后刪除if(p1=head) head=p1-next; /如果head指針和p1指針相等則將下一個(gè)結(jié)點(diǎn)賦給指針head else p2-next=p1-next; /否則將p1所指結(jié)點(diǎn)賦給p2所指結(jié)點(diǎn)將要?jiǎng)h除的職
14、工信息跳過去cout 刪除編號為id的職工n;n-; /將職工人數(shù)減1 return(head); /將頭指針返回/*修改職工數(shù)據(jù)*/student *Information:modify(student *head,long id)system(cls);coutt-nid&p1-next!=NULL)/尋找結(jié)點(diǎn)當(dāng)p1所指的職工編號不是輸入的職工編號并且p1所指的next指針不為空p1=p1-next; /p2指向原p1指向的結(jié)點(diǎn)p1后移一個(gè)結(jié)點(diǎn) if(id=p1-id) /如果要查找的職工編號是p1所指的職工編號cout你需要修改的員工信息如下:n;cout-n;cout|編 號| |姓
15、名| |性別| |基本工資| |加班工資| |其他獎(jiǎng)金| |總額|n;cout-n;coutsetw(6)idsetw(10)namesetw(10)sexsetw(10)paid0setw(10)paid1setw(12)paid2setw(12)totalendl;cout-n;coutp1-id;while(p1-id)id)cout0p1-id; /將輸入的編號存放到p1所指結(jié)構(gòu)體的數(shù)組id中 coutp1-name; /將輸入的姓名存放到結(jié)構(gòu)體名為p1的數(shù)組name中coutp1-sex; coutp1-paid0;while(p1-paid0)paid0)cout0p1-paid0
16、; /將輸入的基本工資存放到p1所指結(jié)構(gòu)體的數(shù)組paid中coutp1-paid1;while(p1-paid1)paid1)cout0p1-paid1; /將輸入的加班工資存放到p1所指結(jié)構(gòu)體的數(shù)組paid中coutp1-paid2;while(p1-paid2)paid2)cout0p1-paid2; /將輸入的其他獎(jiǎng)金存放到p1所指結(jié)構(gòu)體的數(shù)組paid中 p1-total=p1-paid0+p1-paid1+p1-paid2; /計(jì)算總分 else cout 需要修改的信息中沒有編號為id查找職工信息student *Information:find(student *head,long
17、 id) /定義一個(gè)指向struct student的結(jié)構(gòu)體指針函數(shù)*find()用來查找職工信息.system(cls);if(head=NULL) /若調(diào)用次函數(shù)以前的頭指針head為空coutid&p1-next!=NULL)/尋找結(jié)點(diǎn)當(dāng)p1所指的職工編號不是輸入的職工編號并且p1所指的next指針不為空p1=p1-next; /p2指向原p1指向的結(jié)點(diǎn)p1后移一個(gè)結(jié)點(diǎn)if(id=p1-id) /如果要查找的職工編號是p1所指的職工編號cout-n;cout|編 號| |姓 名| |性別| |基本工資| |加班工資| |其他獎(jiǎng)金| |總額|n;cout-n;coutsetw(6)idse
18、tw(10)namesetw(10)sexsetw(10)paid0setw(10)paid1setw(12)paid2setw(12)totalendl;cout-n;else cout信息中沒有編號為id的員工.n; /結(jié)點(diǎn)沒找到return(head);/-定義paixu()函數(shù)將職工的工資總額從大到小排列并輸出void Information:paixu(student *head) system(cls);int i,k,m=0,j;student *pN;/定義一個(gè)指向struct student的結(jié)構(gòu)體指針數(shù)組p if(head!=NULL)/如果頭指針是空則繼續(xù) m=count
19、(head);cout-n;cout *員工工資統(tǒng)計(jì)表*n;cout-n;cout|編號| |姓名| |性別| |基本工資| |加班工資| |其他獎(jiǎng)金| |總額| |名次|n;cout-n;p1=head;for(k=0;knext;for(k=0;km-1;k+) /選擇排序法for(j=k+1;jtotaltotal)p2=pk;pk=pj;pj=p2; /從大到小排列的指針 for(i=0;im;i+)coutsetw(6)idsetw(8)namesetw(9)sexsetw(10)paid0setw(10)paid1setw(10)paid2setw(10)totalsetw(10)
20、i+1endl;cout求各工資的平均值的函數(shù)void Information:average(student *head)int k,m;float arg1=0,arg2=0,arg3=0;if(head=NULL)/如果頭指針是空則繼續(xù)cout 這是一個(gè)空表,請先輸入員工信息!n;elsem=count(head);p1=head;for(k=0;kpaid0;arg2+=p1-paid1;arg3+=p1-paid2;p1=p1-next;arg1/=m;arg2/=m;arg3/=m;cout *各項(xiàng)工資的平均值*n;cout-n;couttt基本工資的平均值: setw(4)arg
21、1ntt加班工資的平均值: setw(4)arg2ntt獎(jiǎng)金的平均值: setw(4)arg3n;cout保存函數(shù).void Information:save(student *head) system(cls); ofstream out(data.txt,ios:out); outcount(head)endl; while(head!=NULL) outnamet idtt sext paid0t paid1t paid2t totalnext; /讀取文件的信息student *Information:Read() system(cls); int i=0; p1=p2=( stude
22、nt *)malloc(LEN); head=NULL; ifstream in(data.txt,ios:in); ini; if(i=0)cout data 文件中的數(shù)據(jù)為空,請先輸入數(shù)據(jù)!endl; return 0; else coutn原文件已保存的信息如下:n; cout endl; cout|姓 名| |編 號| |性別| |基本工資| |加班工資| |其他獎(jiǎng)金| |總額|n; cout 0;i-) p1=(student *)malloc(LEN); st.idst.sex st.paid0st.paid1st.paid2st.total; strcpy(p1
23、-name,); p1-id=st.id; strcpy(p1-sex,st.sex); p1-paid0=st.paid0; p1-paid1=st.paid1; p1-paid2=st.paid2; p1-total=st.total; if(n=0)head=p1; /如果是輸入第一組職工信息就將指針p1賦給指針head else p2-next=p1; /否則將p1賦給p2所指結(jié)構(gòu)體的next指針 p2=p1; /將指針p1賦給指針p2 n+; /將n的值加1 /顯示讀入數(shù)據(jù) cout namet id t sex t paid0 t paid1 t paid2 t to
24、talendl; cout endl;cout 數(shù)據(jù)已經(jīng)成功讀取完畢!nnnext=NULL;in.close(); return (head); /-菜單void Menu() Information person; student *head=NULL; int choice; long i; head=person.Read(); do couttendl; coutt endl; coutt _ _ _ 歡迎進(jìn)入員工信息統(tǒng)計(jì)管理 _ _ _ endl; coutt endl; couttendl; coutt endl; coutt 相關(guān)操作選項(xiàng) endl; coutt endl; c
25、outtendl; coutt endl; coutt endl; coutt 1. 員工數(shù)據(jù)輸入 endl; coutt endl; coutt 2. 顯示員工工資 endl; coutt endl; coutt 3. 排序統(tǒng)計(jì)工資 endl; coutt endl; coutt 4. 查找員工工資 endl; coutt endl; coutt 5. 增加員工工資 endl; coutt endl; coutt 6. 刪除員工工資 endl; coutt endl; coutt 7. 修改員工信息 endl; coutt endl; coutt 8. 成功保存信息 endl; coutt
26、endl; coutt 9. 安全退出系統(tǒng) endl; coutt endl; couttnendl; coutchoice; while(choice9) coutchoice; /head=person.Read(); switch(choice) case 1: head=person.creat(); break; case 2: /head=person.Read(); person.output(head); break; case 3: /head=person.Read(); person.paixu(head); person.average(head); cout 參加工作的員工人數(shù)為:person.count(head)人nn; break; case 4: /head=person.Read(); couti; while(i) couti; person.fi
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(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)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 關(guān)工委工作先進(jìn)集體申報(bào)表(幼兒園)
- 2024年吉林小車客運(yùn)從業(yè)資格證考試
- 2024年寧夏駕駛員客運(yùn)資格證模擬考試題及答案詳解
- 2024年石家莊客運(yùn)資格證理論考試答題技巧
- 2024年延邊考從業(yè)資格證客運(yùn)試題
- 2024年福建客運(yùn)應(yīng)用能力考試題庫
- 2024年河南客運(yùn)從業(yè)資格證操作考試題答案
- 2024年梅州客運(yùn)資格證題庫下載
- 2025屆河南省周口市商水縣周口中英文學(xué)校高三生物第一學(xué)期期末統(tǒng)考模擬試題含解析
- 《星期日的安排》課件
- 電氣專項(xiàng)施工方案(廠房)
- 消化道出血病人護(hù)理查房課件
- 梁祝(梁山伯與祝英臺)克萊德曼(原版)鋼琴雙手簡譜 鋼琴譜
- 公共關(guān)系學(xué)-實(shí)訓(xùn)項(xiàng)目1:公關(guān)三要素分析
- 人教版2022年四年級上冊數(shù)學(xué)期中考試考點(diǎn)檢查試卷
- 花城版音樂八年級下冊第3單元《生死不離》教案
- GB∕T 8163-2018 輸送流體用無縫鋼管
- 南京中醫(yī)大《金匱要略》教學(xué)大綱
- 鋼混組合梁施工方案
- 課件《“多元一體”視域下的中國古代民族關(guān)系》
- 初中班主任三年工作規(guī)劃8篇
評論
0/150
提交評論