欧美精品一二区,性欧美一级,国产免费一区成人漫画,草久久久久,欧美性猛交ⅹxxx乱大交免费,欧美精品另类,香蕉视频免费播放

數(shù)據(jù)結構C語言版 單鏈表源代碼

上傳人:文*** 文檔編號:28232461 上傳時間:2021-08-24 格式:DOC 頁數(shù):10 大?。?2KB
收藏 版權申訴 舉報 下載
數(shù)據(jù)結構C語言版 單鏈表源代碼_第1頁
第1頁 / 共10頁
數(shù)據(jù)結構C語言版 單鏈表源代碼_第2頁
第2頁 / 共10頁
數(shù)據(jù)結構C語言版 單鏈表源代碼_第3頁
第3頁 / 共10頁

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

10 積分

下載資源

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

資源描述:

《數(shù)據(jù)結構C語言版 單鏈表源代碼》由會員分享,可在線閱讀,更多相關《數(shù)據(jù)結構C語言版 單鏈表源代碼(10頁珍藏版)》請在裝配圖網(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); /*建設鏈表并設置為空表*/ printf("請輸

3、入數(shù)據(jù)長度: "); 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 求長度 length()\n"); printf("select 2 取結點 get()\n"); printf("select 3 求值查找 locate()\n"); pri

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

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

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

7、tf("select 4 刪除結點 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"); }

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

相關資源

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

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

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


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