LIST(删除即用)

LIST(删除即用)

ID:81525048

大小:28.50 KB

页数:4页

时间:2022-10-12

上传者:U-24289
LIST(删除即用)_第1页
LIST(删除即用)_第2页
LIST(删除即用)_第3页
LIST(删除即用)_第4页
资源描述:

《LIST(删除即用)》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方LIST(删除即用).txt老公如果你只能在活一天,我愿用我的生命来延续你的生命,你要快乐的生活在提出分手的时候请不要说还爱我。typedefcharElementType;typedefstructnode{ElementTypedata;structnode*next;}ChainNode;typedefstructlist{ChainNode*head;}List;List*CreateList(void);intInsertList(List*lp,unsignedintn,ElementTypedata);ChainNode*GetAddr(List*lp,unsignedintn);intDestroyList(List*lp);intClearList(List*lp);intDeleteList(List*lp,unsignedintn);intGetElement(List*lp,unsignedintn,ElementType*data);voidTraverseList(List*lp,void(*f)(ElementType*data));intListAppend(List*lp,ElementTypedata);List*CreateList(void){List*lp;lp=(List*)malloc(sizeof(List));if(!lp)return0;lp->head=(ChainNode*)malloc(sizeof(ChainNode));if(!lp->head){free(lp);return0;}lp->head->data=0;lp->head->next=0;returnlp;}----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方

1----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方intInsertList(List*lp,unsignedintn,ElementTypedata){ChainNode*p;ChainNode*new;if(n==0)return0;p=GetAddr(lp,n-1);if(!p)return0;new=(ChainNode*)malloc(sizeof(ChainNode));if(!new)return0;new->data=data;new->next=p->next;p->next=new;return1;}ChainNode*GetAddr(List*lp,unsignedintn){inta;ChainNode*p;p=lp->head;a=0;if(n==0)returnp;for(;(anext){a++;}returnp;}intDestroyList(List*lp){if(!ClearList(lp))return0;free(lp->head);free(lp);return1;}intClearList(List*lp){while(DeleteList(lp,1));----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方

2----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方if(lp->head->next==0)return1;elsereturn0;}intDeleteList(List*lp,unsignedintn){ChainNode*p;ChainNode*p1;if(n==0)return0;p=GetAddr(lp,n-1);if(!p||(p->next==0))return0;p1=p->next;p->next=p1->next;free(p1);return1;}intGetElement(List*lp,unsignedintn,ElementType*data){ChainNode*p;if(n==0)return0;p=GetAddr(lp,n);if(!p)return0;*data=p->data;return1;}voidTraverseList(List*lp,void(*f)(ElementType*data)){ChainNode*p;inta;p=lp->head;for(;p;p=p->next){f(&(p->data));}}intListAppend(List*lp,ElementTypedata)//ChainNode*p;----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方

3----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方ChainNode*new;inta;new=(ChainNode*)malloc(sizeof(ChainNode));if(!new){return0;}new->data=data;new->next=0;p=lp->head;for(a=0;p->next;a++){p=p->next;}if(!(p->next)){p->next=new;return1;}return0;//----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。
最近更新
更多
大家都在看
近期热门
关闭