| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 623 人关注过本帖
标题:关于链表输出
取消只看楼主 加入收藏
陈威
Rank: 1
等 级:新手上路
帖 子:114
专家分:0
注 册:2009-10-18
结帖率:95%
收藏
 问题点数:0 回复次数:0 
关于链表输出
#include "stdio.h"
#include "conio.h"
#define NULL 0
#define LEN sizeof(struct student)
struct student
{long num;
 int score;
 struct student *next;
};
struct student listA,listB;
int n,sum=0;

struct student *creat(void)
{struct student *p1,*p2,*head;
int n=0;
printf("Input 0 to end.\n");
printf("Input number,score:\n");
p1=p2=(struct student *)malloc(LEN);
scanf("%d,%d",&p1->num,&p1->score);
head=NULL;
while(p1->num!=0)
{if(n==0)head=p1;
 else p2->next=p1;
 p2=p1;
 n++;
 p1=(struct student *)malloc(LEN);
 scanf("%ld,%d",&p1->num,&p1->score);
}
p2->next=NULL;
return(head);
}

struct student *insert(struct student *ah,struct student *bh)
{
}

void print(struct student *head)
{struct student *p;
 printf("\nThere are %d records:\n",sum);
 p=head;
 if(p!=NULL)
  do
  {printf("%ld%5d\n",p->num,p->score);
   p=p->next;
  }
  while(p!=NULL);
}
main()
{struct student *ahead,*bhead,*abh;
 printf("\nInput list a:\n");
 ahead=creat();
 sum=sum+n;
printf("\nInput list b:\n");
 bhead=creat();
 sum=sum+n;
abh=insert(ahead,bhead);
 print(ahead);
    getch();
}
为什么sum输出还为0;还有第一条记录输出老是出错,帮忙看看,谢谢。
搜索更多相关主题的帖子: 输出 链表 
2010-02-02 04:27
快速回复:关于链表输出
数据加载中...
 
   



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

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