#include#includecharpassword[10]="12345";//定義全局變量存儲(chǔ)初始密碼intscan_login();//">
公司雇員信息管理系統(tǒng)

公司雇員信息管理系統(tǒng)

ID:15503837

大?。?1.00 KB

頁(yè)數(shù):14頁(yè)

時(shí)間:2018-08-03

公司雇員信息管理系統(tǒng)_第1頁(yè)
公司雇員信息管理系統(tǒng)_第2頁(yè)
公司雇員信息管理系統(tǒng)_第3頁(yè)
公司雇員信息管理系統(tǒng)_第4頁(yè)
公司雇員信息管理系統(tǒng)_第5頁(yè)
資源描述:

《公司雇員信息管理系統(tǒng)》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。

1、公司雇員信息管理系統(tǒng)#include#include#includecharpassword[10]="12345";//定義全局變量存儲(chǔ)初始密碼intscan_login();//函數(shù)聲明intscan();intlogin();intchangepass();intindex_1();intindex_2();intLinkedListLength();typedefstructLNode//雇員數(shù)據(jù)結(jié)構(gòu)描述{doublenumber;charname[20];chardepartment[20];doubletime

2、;doublepay;structLNode*next;}LNode,*LinkedList;LinkedListSelectSort2(LinkedListL)//排序函數(shù)實(shí)現(xiàn){LinkedListp,q,small;doubletemp,i,j;charcop[20];for(p=L->next;p->next!=NULL;p=p->next){small=p;for(q=p->next;q;q=q->next){i=(q->time)*(q->pay);j=(small->time)*(small->pay);if(i

3、emp=p->number;p->number=small->number;small->number=temp;temp=p->pay;p->pay=small->pay;small->pay=temp;temp=p->time;p->time=small->time;small->time=temp;strcpy(cop,p->name);strcpy(p->name,small->name);strcpy(small->name,cop);strcpy(cop,p->department);strcpy(p->department,small->department);st

4、rcpy(small->department,cop);}}returnL;}LinkedListLinkedListInit()//線性鏈表初始化{LinkedListL;L=(LinkedList)malloc(sizeof(LNode));L->next=NULL;returnL;}voidLinkedListTraverse(LinkedListL)//單鏈表的遍歷{LinkedListp;p=L->next;printf("編號(hào)

5、姓名

6、部門

7、工時(shí)

8、時(shí)薪");while(p!=NULL){printf("%-3.0f%s%s%-3.0f%-3.0f",p->num

9、ber,p->name,p->department,p->time,p->pay);p=p->next;printf("");}}intLinkedListLength(LinkedListL)//求鏈表長(zhǎng)度{LinkedListp;intj;p=L->next;j=0;while(p!=NULL){j++;p=p->next;}returnj;}LinkedListLinkedListGet(LinkedListL,doublei)//查詢編號(hào)為i的雇員信息{LinkedListp;doublej=1,k;k=LinkedListLength(L);p=L->next;wh

10、ile(p!=0&&(j<=k)){if(p->number==i)returnp;elsep=p->next;j++;}return0;}LinkedListLinkedListGet_name(LinkedListL,charname[20])//查詢姓名為name的雇員信息{LinkedListp;doublej=1,k;k=LinkedListLength(L);p=L->next;while(p!=0&&(j<=k)){if(strcmp(p->name,name)==0)returnp;elsep=p->next;j++;}return0;}intLinkedList

11、Del(LinkedListL,doublenum)//雇員信息刪除{LinkedListpre,p;pre=L;p=L->next;while(p&&p->number!=num){pre=p;p=p->next;}if(p==NULL){printf("數(shù)據(jù)庫(kù)中沒(méi)有編號(hào)為%lf的雇員信息",num);return1;}pre->next=p->next;free(p);return0;}voidLinkedListInsert(LinkedListL,doublei,do

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁(yè),下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動(dòng)畫的文件,查看預(yù)覽時(shí)可能會(huì)顯示錯(cuò)亂或異常,文件下載后無(wú)此問(wèn)題,請(qǐng)放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫(kù)負(fù)責(zé)整理代發(fā)布。如果您對(duì)本文檔版權(quán)有爭(zhēng)議請(qǐng)及時(shí)聯(lián)系客服。
3. 下載前請(qǐng)仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進(jìn)行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時(shí)可能由于網(wǎng)絡(luò)波動(dòng)等原因無(wú)法下載或下載錯(cuò)誤,付費(fèi)完成后未能成功下載的用戶請(qǐng)聯(lián)系客服處理。