欢迎来到天天文库
浏览记录
ID:81525048
大小:28.50 KB
页数:4页
时间:2022-10-12
《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;//----------专业最好文档,专业为你服务,急你所急,供你所需-------------文档下载最佳的地方
此文档下载收益归作者所有
举报原因
联系方式
详细说明
内容无法转码请点击此处