| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 869 人关注过本帖
标题:建立,输出,删除,插入链表的问题
只看楼主 加入收藏
haichuan
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-3-7
收藏
 问题点数:0 回复次数:6 
建立,输出,删除,插入链表的问题
如下程序时照着书上的敲进去的,虽然编译连接成功,但是运行的结果不对啊 整个过程是要建立链表,输出链表,删除结点,插入结点.      #include<stdio.h>
#include <stdlib.h>
#define NULL 0
#define len sizeof(struct student)
struct student
{long num;
float score;
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("%ld,%f",&p1->num,&p1->score);
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("%ld,%f",&p1->num,&p1->score);
}
p2->next=NULL;
return(head);
}
void print(struct student *head)
{struct student *p;
printf("\nthese %d records are:\n",n);
p=head;
if(head!=NULL)
{do
{printf("%ld %5.1f",p->num,p->score);
p=p->next;
}while(p!=NULL);
}
}
struct student *del(struct student *head,long num)
{
struct student *p1,*p2;
if(head==NULL) printf("\nlist null!\n");return(head);
p1=head;
while(num!=p1->num&&p1->next!=NULL)
{p2=p1;p1=p1->next;}
if(num==p1->num)
{if(head==p1) head=p1->next;
else p2->next=p1->next;
printf("\ndelete %ld",num);
n=n-1;
}
else printf("\n%ld not been found!\n",num);
return(head);
}
struct student *insert(struct student *head,struct student *stud)
{
struct student *p0,*p1,*p2;
p1=head;
p0=stud;
if(head==NULL)
{head=p0;p0->next=NULL;}
else
{while((p0->num>p1->num)&&p1->next!=NULL)
{p2=p1;p1=p1->next;}
if(p0->num<p1->num)
{if(head==p1) head=p0;
else p2->next=p0;
p0->next=p1;
}
else {p1->next=p0;p0->next=NULL;}
}
n=n+1;
return(head);
}
main()
{struct student *head,stu;
long del_num;
printf("input records:\n");
head=creat();
print(head);
printf("\ninput the deleted number:");
scanf("%ld",&del_num);
head=del(head,del_num);
print(head);
printf("\ninput the interted records:");
scanf("%ld,%f",&stu.num,&stu.score);
head=insert(head,&stu);
print(head);
}       要不你们在你们的机器上运行以下
也可能是因为我的编译环境 我的是vc++6.0    
搜索更多相关主题的帖子: 输出 struct student 链表 num 
2006-04-18 13:41
haichuan
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-3-7
收藏
得分:0 

这就是谭浩强C语言书上的例11.8,11.9,11.10,11.11,还有11.7.8小节的的综合操作,我是照着书上的敲进去的,检查了好多遍,不知道哪儿有问题,求助高手!!!!!

2006-04-18 13:47
等待
Rank: 1
等 级:新手上路
帖 子:173
专家分:0
注 册:2005-12-1
收藏
得分:0 
建议你找个学生成绩管理系统,认真的看看建立,输出,删除,插入链表的问题你都搞明白了

2006-04-18 18:20
haichuan
Rank: 1
等 级:新手上路
帖 子:23
专家分:0
注 册:2006-3-7
收藏
得分:0 

问题已经解决

2006-04-18 20:39
huzi00008
Rank: 1
等 级:新手上路
帖 子:112
专家分:0
注 册:2006-10-9
收藏
得分:0 
这个程序的问题是不是 #define NULL  0?

2006-11-07 14:59
huzi00008
Rank: 1
等 级:新手上路
帖 子:112
专家分:0
注 册:2006-10-9
收藏
得分:0 
这个程序的问题是不是 #define NULL  0?

2006-11-07 15:00
srl237381
Rank: 1
等 级:新手上路
帖 子:29
专家分:4
注 册:2018-12-19
收藏
得分:0 
scanf里面不要加符号
2019-05-20 23:23
快速回复:建立,输出,删除,插入链表的问题
数据加载中...
 
   



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

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