鱼C论坛

 找回密码
 立即注册
查看: 1826|回复: 8

链表消失的节点

[复制链接]
发表于 2016-5-11 18:09:49 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 yiwan 于 2016-5-12 09:54 编辑


#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>

#define LEN sizeof(struct student)  //结构大小

struct student
{
    int num;
    float score;
    struct student *next;

};

struct student *creat();  //创建链表
void print(struct student *head); //打印链表

int n;   //全局变量

void main()
{
    struct student *stu;
   
    stu=creat();
    print(stu);

    printf("\n\n");
   
  
}

struct student *creat()
{
    struct student *p1,*p2;
    struct student *head;
    p1=p2=(struct student *)malloc(LEN);//开辟结构大小;

    printf("please enter the num:");
    scanf("%d",&p1->num);
    printf("please enter the score:");
    scanf("%f",&p1->score);
   
    head=NULL;
    n=0;
   
    while(p1->num)
    {
        n++;
        if(1==n)
        {
            head=p1;
           
        }
        else
        {
          p2->next=p1;  
        
        }
  p1 =(struct student *)malloc(LEN);              //p1=p2=(struct student *)malloc(LEN);
                                                                        //p1指向新节点,p2->next还要保存指向p1新节点!!
    printf("please enter the num:");
    scanf("%d",&p1->num);
    printf("please enter the score:");
    scanf("%f",&p1->score);

    }

    p2->next=NULL;

    return head;

}

void print(struct Student * head)
{
    struct student * p;
    printf("Now,These %d records are:\n",n);
    p=head;
    if(head!=NULL)
    do
    {
        printf("%ld %5.1f\n",p->num,p->score);
        p=p->next;
    }while(p!=NULL);
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2016-5-11 18:23:05 | 显示全部楼层
重点是头结点中head—>next没有赋予下一个结点?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-5-11 18:24:17 | 显示全部楼层
有没有大神帮忙!!
万般感谢!!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-5-11 18:27:12 | 显示全部楼层
p1=p2=(struct student *)malloc(LEN);
这句,p1 和 p2 指向了同一个节点,while 循环下次插入链表 并没有接在head之后
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-5-11 18:36:44 | 显示全部楼层
等待问题答案过程中
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-5-11 18:52:47 | 显示全部楼层
skyseawing 发表于 2016-5-11 18:27
p1=p2=(struct student *)malloc(LEN);
这句,p1 和 p2 指向了同一个节点,while 循环下次插入链表 并没有 ...

我在p1=p2=(steuct student *……后面加多判断if.    n==0      p2=head->next还是不行!

原谅我用手机发的,实在打不出括号
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2016-5-11 20:43:53 | 显示全部楼层
yiwan 发表于 2016-5-11 18:52
我在p1=p2=(steuct student *……后面加多判断if.    n==0      p2=head->next还是不行!

原谅我用手 ...

插入链表的过程中,你应该保证p1指向链表的最后一个节点, p2指向新malloc()的空间,而你的程序里把p1和p2都指向新的malloc的空间了,没有连接到链表的末尾
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-5-12 09:47:37 | 显示全部楼层
明白第二次开辟空间,只要p1指向新节点,p2->next指向p1新开辟的节点。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-5-12 09:51:43 | 显示全部楼层
是我多手将p2也指向新节点! 感谢skyseawing解答!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-27 00:27

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表