| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 406 人关注过本帖
标题:大虾们帮我找一下这个程序的错误,链表的插入操作!!
取消只看楼主 加入收藏
mmc007
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2008-6-14
收藏
 问题点数:0 回复次数:0 
大虾们帮我找一下这个程序的错误,链表的插入操作!!
#include<stdio.h>
#include<malloc.h>
#define NULL 0
#define ERROR 0
#define LEN sizeof(struct student)
struct student
{
int num;
int 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);
printf("Please input the number and the score:\n");;
scanf("%d,%d",&p1->num,&p1->score);
head=NULL;
while(p1->num!=0)
{
n++;
if(n==1) head=p1;
else p2->next=p1;
p2=p1;
p1=(struct student*)malloc(LEN);
scanf("%d,%d",&p1->num,&p1->score);
}
p2->next=NULL;

return(head);
}
//输出一个链表中的所有元素
void print(struct student *head)
{
struct student *p;
printf("\nNow,These records are:\n",n);
p=head;
if(head!=NULL)
do
{
printf("%d,%d\n",p->num,p->score);
p=p->next;
}while(p!=NULL);
//else return ERROR;
}
//插入链表中的一个元素
int InsertLink(struct student *p)
{
int a,i,j,b;
struct student *s,*q;
q=p;
printf("\nThe inserting positon is:");
scanf("%d",&i);
j=1;
if(p!=NULL&&j<i-1)
{
p=p->next;
j++;
}
if(!p||j>i-1)
{
printf("InsertLink is unsuccessful!!\n");
return ERROR;
}
s=(struct student*)malloc(LEN);
printf("\nThe inserting number is:");
scanf("%d,%d",&a,&b);
s->num=a;
s->score=b;
s->next=p->next;
p->next=s;
n++;
printf("InsertLink is successful!!\n");
print(q);
}
void main()
{
struct student *h;
h=creat();
InsertLink(h);
}

首先我第一次测试的时候输入:
1,23
3,22
0,0
然后让我输入一个插入的位置:2
输入要插入的元素数值:2,55
结果显示为:
1,23
2,55
3,22


但是当我刚开始输入:
1,23
2,33
3,55
4,66
0,0
然后让我输入一个插入的位置:5
输入要插入的元素数值:5,55
结果却是:
1,23
2,33
5,55
3,55
4,66
应该是:

1,23
2,33
3,55
4,66
5,55
才对啊!!

这是怎么回事啊,找了好久也没有发现错误,请大家帮我看看,请多指教!!
搜索更多相关主题的帖子: 链表 
2008-06-14 21:12
快速回复:大虾们帮我找一下这个程序的错误,链表的插入操作!!
数据加载中...
 
   



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

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