《實驗十鏈表操作》word版

《實驗十鏈表操作》word版

ID:25095414

大?。?3.18 KB

頁數(shù):4頁

時間:2018-11-18

《實驗十鏈表操作》word版_第1頁
《實驗十鏈表操作》word版_第2頁
《實驗十鏈表操作》word版_第3頁
《實驗十鏈表操作》word版_第4頁
資源描述:

《《實驗十鏈表操作》word版》由會員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在工程資料-天天文庫。

1、實驗十鏈表操作[實驗?zāi)康腯掌握鏈表的定義和使用方法,能熟練進(jìn)行鏈表的各種操作。[實驗內(nèi)容]定義一學(xué)生鏈表,完成建立鏈表、打印鏈表、插入鏈表和刪除鏈表操作。[實驗步驟](1)分別定義四個函數(shù)create(),print(),insert(),del()。(2)在主函數(shù)中調(diào)用上述函數(shù),測試各函數(shù)的功能。源程序:#include#includestructstudent{intno;structstudent*next;};/////////////////////////建立鏈表structstudent*create(){structs

2、tudent*head,*p1,*p2;head=NULL;p1=p2=(structstudent*)malloc(sizeof(structstudent));scanf("%d",&p1->no);while(p1->no!=0){if(head==NULL)head=p1;elsep2->next=p1;p2=p1;p1=(structstudent*)malloc(sizeof(structstudent));scanf("%d",&p1->no);}p2->next=NULL;returnhead;}//////打印鏈表voidprint(structstud

3、ent*head){structstudent*p;p=head;while(p!=NULL){printf("%5d",p->no);p=p->next;}printf("");}////////刪除鏈表structstudent*del(structstudent*head,intnum){structstudent*p1,*p2;if(head==NULL)printf("NULL");else{p1=head;while(p1->no!=num&&p1->next!=NULL){p2=p1;p1=p1->next;}if(p1->no==num){if(p

4、1==head)head=head->next;elsep2->next=p1->next;free(p1);printf("deletesuccess!");}elseprintf("notfound");//////這一塊是對應(yīng)原來的循環(huán)條件}returnhead;}///////用遞歸反向輸出鏈表voidoutput(structstudent*head){if(head->next!=NULL){output(head->next);printf("%5d",head->no);}}/////////用遞歸(recursion)正向輸出鏈表voidoutp

5、ut1(structstudent*head){if(head!=NULL)printf("%5d",head->no);output1(head->next);}main(){structstudent*head,*head1;intnum;head=create();output1(head);//print(head);printf("");printf("");scanf("%d",&num);head=del(head,num);print(head);}

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

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

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