| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 455 人关注过本帖
标题:各路大神看看这 个链表,出什么问题了?
只看楼主 加入收藏
蓝天时代
Rank: 2
等 级:论坛游民
帖 子:30
专家分:47
注 册:2013-4-25
收藏
 问题点数:0 回复次数:1 
各路大神看看这 个链表,出什么问题了?
#include<stdio.h>
#include<malloc.h>
#define len sizeof(struct student)
struct student
{
long num;
float score;
struct student *next;
};
int n;

//创建链表
struct student*creat()
{
 struct student *p1,*p2;
 struct student *head=NULL;
 n=0;
 p1=p2=(struct student*)malloc(len);
 scanf("%ld%f",&p1->num,&p1->score);
 while(p1->num!=0)
 {
     n++;
 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;
p=head;
while(p!=NULL)
{printf("%ld %f\n",p->num,p->score);
p=p->next;
}
}

//删除链表
struct student * del(struct student *head)
{
long _num,i;
struct student *p,*p1;
printf("输入要删除的数:");
back: scanf("%ld",&_num);

p=head;
if(_num==head->num)  head=head->next;
else
{
    while(p->num!=_num)
{
p1=p;
p=p->next;
}
p1->next=p->next;
}
printf("还要删除吗?要按1,不要按0\n");
scanf("%d",&i);
if(i==1)  goto back;
else
return(head);
}


//插入链表
struct student *insert(struct student *head)
{
struct student *p,*p1,*p2;
p=p1=p2=(struct student*)malloc(len);
printf("要插入的数:");
scanf("%ld%f",&p->num,&p->score);
p1=head;
if(p->num<=p1->num)    { head=p;  p->next=p1;}
 else
 {
   while(p1->num<p->num&&p2->next!=NULL)
     {p2=p1;   p1=p1->next;}
  if  (p2->next=NULL)   {p2->next=p;}
 else {p->next=p1;p2->next=p;}
 
 return (head);
 }
}


main()
{
//print(creat());
//print(del(creat()));
    print(insert(creat()));
}

//链表只有插入有问题,当输入:
1 1
2 2
3 3

结果出现
要插的数
4 4
编译出错。
搜索更多相关主题的帖子: next 看看 include 
2013-05-31 21:40
蓝天时代
Rank: 2
等 级:论坛游民
帖 子:30
专家分:47
注 册:2013-4-25
收藏
得分:0 
问题就是插不进尾数。
2013-05-31 22:14
快速回复:各路大神看看这 个链表,出什么问题了?
数据加载中...
 
   



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

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