欢迎来到天天文库
浏览记录
ID:58460982
大小:14.00 KB
页数:2页
时间:2020-09-03
《建立一个单向链表 将偶数节点删去后输出链表.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、#include#includetypedefstructLNode{intdata;structLNode*next;}LNode;LNode*creat(){intt;LNode*s,*p,*L;L=newLNode;if(L==NULL)printf("ERROR");L->next=NULL;p=L;scanf("%d",&t);while(t!=-1){s=newLNode;if(s==NULL)printf("ERROR");s->data=t;p->next
2、=s;p=p->next;scanf("%d",&t);}p->next=NULL;returnL;}voidDelet(LNode*q){LNode*L,*s,*p;L=q;p=L->next;while(p!=NULL){if(p->data%2==0){s=p->next;L->next=s;}elseL=L->next;p=p->next;}}intmain(void){LNode*head,*L;head=creat();Delet(head);L=head->next;while(L!=NULL){p
3、rintf("%d",L->data);L=L->next;}return0;}
此文档下载收益归作者所有