哪位帮帮忙,看下哪有错?

作者在 2010-05-20 08:25:29 发布以下内容
#include "stdafx.h"
#include"stdio.h"
#include"malloc.h"
#define NULL0
#define LEN sizeof(struct student)
struct student
{
int num;
char name[20];
char sex;
int age;
struct student *next;
};
int n;
struct student *creat(void)
{
struct student *head;
struct student *p1,*p2;
n=0;
p1=p2=(struct student*) malloc(LEN);
scanf("%d %s %c %d",&p1->num,&p1->name,&p1->sex,&p1->age);
head=NULL;
while(p1->num!=0)
{
  n=n+1;
  if(n==1) head=p1;
  else
   p2->next=p1;
  p2=p1;
  p1=(struct student*)malloc(LEN);
  scanf("%d %s %c %d",&p1->num,&p1->name,&p1->sex,&p1->age);
}
p2->next=NULL;
return(head);
}
void print(struct student *head)
{
struct student *p;
printf("\nnow,the %d records are:\n",n);
p=head;
if(head!=NULL)
  do
  {
   printf("%d %s %c %d\n",p->num,p->name,p->sex,p->age);
   p=p->next;
  }while(p!=NULL);
}
struct student *del(struct student *head,int num)
{
struct student *p1,*p2;
if(head==NULL)
{
  printf("\nlist null!\n");
  goto end;
}
p1=head;
while(num!=p1->num&&p1->next!=NULL)
{
  p2=p1;p1=p1->next;
}
if(num==p1->num)
{
  if(p1==head) head=p1->next;
   else
    p2->next=p1->next;
  printf("delete:%d\n",num);
  n=n-1;
}
  else
   printf("%d not been found!\n",num);
end:
return(head);
}
void main()
{
struct student *head,*stu;
int del_age;
printf("input records:\n");
printf("num name sex age\n\n");
head=creat();
print(head);
printf("\ninput the delete age:\n");
scanf("%d",&del_age);
while(del_age!=0)
{
  head=del(head,del_age);
  print(head);
  printf("input the delete age:\n");
  scanf("%d",&del_age);
}
}
默认分类 | 阅读 908 次
文章评论,共0条
游客请输入验证码
浏览4923次
文章分类