| 编程中国 | 业界新闻 | 技术文章 | 视频教程 | 下载频道 | 程序源码 | 个人空间 | 编程论坛
全能ASP/PHP/ASP.NET主机,支持月付专业 MSSQL 数据库空间,支持月付专业 MySQL 数据库空间,支持月付学习型 ASP/PHP/ASP.NET 主机 30元/年
高端软件开发 = 年薪十万不是梦   
共有 191 人关注过本帖
标题:关于链表建立问题,程序出错,想了好久拉,但不知道在哪,请大家帮忙,
收藏  订阅  推荐  打印
billysfl
Rank: 2
等级:注册会员
帖子:18
积分:518
注册:2008-1-18
关于链表建立问题,程序出错,想了好久拉,但不知道在哪,请大家帮忙,

#include <stdlib.h>
#include <stdio.h>
#define NuLL 0
#define LEN sizeof(struct student)
struct student
{long number;
  float score;
  struct student *next;
};
int n;

struct student *creat(void)
{ struct student *P1,*p2;
   struct student *head;
   n=0;
   p1=p2=(struct student *)malloc(LEN);
   scanf("%ld,%f",&p1->number,&p1->score);
   head=NULL;
   while (p1->number!=0)
   {n=n+1;
   if (n==1) head=p1;
   else p2->next=p1;
    p2=p1;
    p1=(struct student *)malloc(LEN);
    scanf("%ld,%f",&p1->number,&p1->score);
   }
    p2->next=NULL;
    return(head);

}

void print(struct student *head)
{
struct student *p;
p=head;
if (head!=NULL)
     do
     {printf("%ld,%f",p->number,p->score);
      p=p->next;

     }while(p!=NULL);
}

int main(void)
{struct student *head;
  head=creat();
  print(head);
}
2008-7-22 05:58
billysfl
Rank: 2
等级:注册会员
帖子:18
积分:518
注册:2008-1-18

编译老出错,不知道为啥,感觉没什么问题啊,麻烦指点下
2008-7-22 09:26
countryroad
Rank: 1
等级:新手上路
帖子:16
积分:280
注册:2008-1-23

……
struct student *creat(void)
{ struct student *P1,*p2;  //这里的p1应该是小写!
……
2008-7-22 10:14
billysfl
Rank: 2
等级:注册会员
帖子:18
积分:518
注册:2008-1-18

十分感谢楼上的帮忙,虽然很简单,但对我来说不容易发现错误,呵呵
2008-7-23 05:54
共有 190 人关注过本帖
关于我们 | 广告合作 | 编程中国 | 清除Cookies | Archiver | WAP | TOP

编程中国 版权所有,并保留所有权利。鲁ICP备08000592号
Powered by Discuz, Processed in 0.047913 second(s), 9 queries.
Copyright©2004-2008, BCCN.NET, All Rights Reserved