本题要求实现两个函数,分别将读入的数据存储为单链表、将链表中偶数值的结点删除。链表结点定义如下:
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist(); struct ListNode *deleteeven( struct ListNode *head );
函数createlist
从标准输入读入一系列正整数,按照读入顺序建立单链表。当读到?1时表示输入结束,函数应返回指向单链表头结点的指针。
函数deleteeven
将单链表head
中偶数值的结点删除,返回结果链表的头指针。
#include <stdio.h>
#include <stdlib.h>
struct ListNode {
int data;
struct ListNode *next;
};
struct ListNode *createlist();
struct ListNode *deleteeven( struct ListNode *head );
void printlist( struct ListNode *head )
{
struct ListNode *p = head;
while (p) {
printf("%d ", p->data);
p = p->next;
}
printf("\n");
}
int main()
{
struct ListNode *head;
head = createlist();
head = deleteeven(head);
printlist(head);
return 0;
}
typedef struct ListNode az;
int cnt=0,cot=0,cmt=0;
struct ListNode *createlist(){
az *head1=(az *)malloc(sizeof(az)),*tail1=head1;
head1->next=NULL;
int t;
while(1){
scanf("%d",&t);
if(-1==t) break;
az *p=(az *)malloc(sizeof(az));
p->data=t;
if(t%2){cmt++;}else{cot++;}
cnt++;
p->next=NULL;
tail1->next=p;
tail1=tail1->next;
}
return head1;
}
struct ListNode *deleteeven( struct ListNode *head ){
if(cmt==cnt) return head->next;
if(cot==cnt) return NULL;
az *o=head,*p=o->next,*pp=p->next;
int x=0;
for(int i=0;i<cnt-1;i++){
if(p->data%2==0){
x=1;
free(p);
o->next=pp;
}
p=pp;
if(pp->next) pp=pp->next;
if(x==1) x=0;
else o=o->next;
}
if(p->data%2==0){free(p);o->next=NULL;}
return head->next;
}
1 2 2 3 4 5 6 7 -1
1 3 5 7
代码长度限制
16 KB
时间限制
400 ms
内存限制
64 MB