影音先锋男人资源在线观看,精品国产日韩亚洲一区91,中文字幕日韩国产,2018av男人天堂,青青伊人精品,久久久久久久综合日本亚洲,国产日韩欧美一区二区三区在线

數(shù)據(jù)結(jié)構(gòu)C語(yǔ)言版 單鏈表源代碼

上傳人:文*** 文檔編號(hào):28232461 上傳時(shí)間:2021-08-24 格式:DOC 頁(yè)數(shù):10 大?。?2KB
收藏 版權(quán)申訴 舉報(bào) 下載
數(shù)據(jù)結(jié)構(gòu)C語(yǔ)言版 單鏈表源代碼_第1頁(yè)
第1頁(yè) / 共10頁(yè)
數(shù)據(jù)結(jié)構(gòu)C語(yǔ)言版 單鏈表源代碼_第2頁(yè)
第2頁(yè) / 共10頁(yè)
數(shù)據(jù)結(jié)構(gòu)C語(yǔ)言版 單鏈表源代碼_第3頁(yè)
第3頁(yè) / 共10頁(yè)

下載文檔到電腦,查找使用更方便

10 積分

下載資源

還剩頁(yè)未讀,繼續(xù)閱讀

資源描述:

《數(shù)據(jù)結(jié)構(gòu)C語(yǔ)言版 單鏈表源代碼》由會(huì)員分享,可在線閱讀,更多相關(guān)《數(shù)據(jù)結(jié)構(gòu)C語(yǔ)言版 單鏈表源代碼(10頁(yè)珍藏版)》請(qǐng)?jiān)谘b配圖網(wǎng)上搜索。

1、 /*單鏈表的各種操作*/ #include #include #define null 0 typedef int ElemType; /* 字符型數(shù)據(jù)*/ struct LNode { ElemType data; struct LNode *next; }; void setnull(struct LNode **p); int length (struct LNode **p); ElemType get(struct LNode **p,int i); void insert(struct LNod

2、e **p,ElemType x,int i); void dele(struct LNode **p,int i); void display(struct LNode **p); int locate(struct LNode **p,ElemType x); void main() { struct LNode *head,*q; /*定義靜態(tài)變量*/ int select,x1,x2,x3,x4; int i,n; int m,g; char e,y; setnull(&head); /*建設(shè)鏈表并設(shè)置為空表*/ printf("請(qǐng)輸

3、入數(shù)據(jù)長(zhǎng)度: "); scanf("%d",&n); for(i=1;i<=n;i++) { printf("將數(shù)據(jù)插入到單鏈表中: "); scanf("%d",&y); insert(&head,y,i); } /*插入數(shù)據(jù)到鏈表*/ display(&head); /*顯示鏈表所有數(shù)據(jù)*/ printf("select 1 求長(zhǎng)度 length()\n"); printf("select 2 取結(jié)點(diǎn) get()\n"); printf("select 3 求值查找 locate()\n"); pri

4、ntf("select 4 刪除結(jié)點(diǎn) delete()\n"); printf("select 0 退出\n"); printf("input your select: "); scanf("%d",&select); while(select!=0) {switch(select) { case 1: { x1=length(&head); printf("輸出單鏈表的長(zhǎng)度%d ",x1); display(&head); }break; case 2: {

5、 printf("請(qǐng)輸入要取得結(jié)點(diǎn): "); scanf("%d",&m); x2=get(&head,m); printf("%d",x2); display(&head); }break; case 3: { printf("請(qǐng)輸入要查找的數(shù)據(jù): "); scanf("%d",&e); x3=locate(&head,e); printf("%d",x3); di

6、splay(&head); }break; case 4: { printf("請(qǐng)輸入要?jiǎng)h除的結(jié)點(diǎn): "); scanf("%d",&g); dele(&head,g); display(&head); }break; } printf("select 1 求長(zhǎng)度 length()\n"); printf("select 2 取結(jié)點(diǎn) get()\n"); printf("select 3 求值查找 locate()\n"); prin

7、tf("select 4 刪除結(jié)點(diǎn) delete()\n"); printf("select 0 退出\n"); printf("input your select: "); scanf("%d",&select); } } void setnull(struct LNode **p) { *p=null; } int length (struct LNode **p) { int n=0; struct LNode *q=*p; while (q!=null) { n++; q=q->n

8、ext; } return(n); } ElemType get(struct LNode **p,int i) { int j=1; struct LNode *q=*p; while (jnext; j++; } if(q!=null) return(q->data); else {printf("位置參數(shù)不正確!\n"); return 0;} } int locate(struct LNode **p,ElemType x) { i

9、nt n=0; struct LNode *q=*p; while (q!=null&&q->data!=x) { q=q->next; n++; } if(q==null) return(-1); else return(n+1); } void insert(struct LNode **p,ElemType x,int i) { int j=1; struct LNode *s,*q; s=(struct LNode *)malloc(sizeof(struct LNode)); s-

10、>data=x; q=*p; if(i==1) { s->next=q; *p=s; } else { while(jnext!=null) { q=q->next; j++; } if(j==i-1) { s->next=q->next; q->next=s; } else printf("位置參數(shù)不正確!\n"); } }

11、 void dele(struct LNode **p,int i) { int j=1; struct LNode *q=*p,*t; if(i==1) { t=q; *p=q->next; } else { while(jnext!=null) { q=q->next; j++; } if(q->next!=null&&j==i-1) { t=q->next; q->next

12、=t->next; } else printf("位置參數(shù)不正確!\n"); } if(t!=null) free(t); } void display(struct LNode **p) { struct LNode *q; q=*p; printf("單鏈表顯示: "); if(q==null) printf("鏈表為空!"); else if (q->next==null) printf("%d\n",q->data); else { while(q->next!=null) { printf("%d->",q->data); q=q->next; } printf("%d",q->data); } printf("\n"); }

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

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號(hào):ICP2024067431號(hào)-1 川公網(wǎng)安備51140202000466號(hào)


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺(tái),本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請(qǐng)立即通知裝配圖網(wǎng),我們立即給予刪除!