| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 420 人关注过本帖
标题:建立一个动态链表,为什么不行,帮我看看,非常感谢!!!
只看楼主 加入收藏
studyC
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-5-14
收藏
 问题点数:0 回复次数:0 
建立一个动态链表,为什么不行,帮我看看,非常感谢!!!
#include<stdio.h>
#include<malloc.h>
#define NULL 0
#define LEN sizeof(struct people)
struct people
{char id[20];
 char name[20];
 char sex[10];
 int birth;
 struct people *next;
};
int n;
struct people *creat(void)
{struct people *head;
 struct people *p1,*p2;
 n=0;
 p1=p2=(struct people *)malloc(LEN);
 scanf("%s%s%s%d",p1->id,p1->name,p1->sex,&p1->birth);
 head=NULL;
 while(p1->id!=0)
 {n=n+1;
  if(n==1)head=p1;
  else p2->next=p1;
  p2=p1;
  p1=(struct people *)malloc(LEN);
  scanf("%s%s%s%d",p1->id,p1->name,p1->sex,&p1->birth);
 }
 p2->next=NULL;
 return(head);
}
void print(struct people *head)
{struct people *p;
 printf("these %d records are:\n",n);
 p=head;
 if(head!=NULL)
     do
     {printf("%s %s %s %d",p->id,p->name,p->sex,p->birth);
         p=p->next;
     }while(p!=NULL);
}
void main()
{struct people *head;
printf("please input records:\n");
head=creat();
print(head);
}
搜索更多相关主题的帖子: 链表 动态 感谢 
2008-05-14 23:40
快速回复:建立一个动态链表,为什么不行,帮我看看,非常感谢!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017561 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved