鱼C论坛

 找回密码
 立即注册
查看: 2325|回复: 1

求解链表插入到尾结点,给出的结果为什么会是0

[复制链接]
发表于 2016-12-3 15:46:01 | 显示全部楼层 |阅读模式

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

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

x
#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 *build();
struct student *insert(struct student *h);
void print();
void main()
{
        struct student *head=NULL;
        head=build();
        print(head);
        head=insert(head);
        print(head);
}
struct student *build()
{
        struct student *h,*newnode,*p;
        int n=0;
        p=newnode=h=NULL;
        while(1)
        {
                newnode=(struct student*)malloc(LEN);
                n++;
                if(n==1)
                        h=newnode;
                else
                        p->next=newnode;
                p=newnode;
        printf("输入学号:");
                scanf("%d",&newnode->num);
                printf("输入成绩:");
                scanf("%f",&newnode->score);
                if(newnode->num==0)
                        break;
        }
        p->next=NULL;
        return h;
}
void print(struct student *h)
{
        struct student *p;
        p=h;
        while(p->next)
        {
                printf("学号%d的成绩是:%f\n",p->num,p->score);
                p=p->next;
        }
   
}
struct student *insert(struct student *h)
{
        struct student *p0 = NULL , *p1 , *p2;
        p0 = (struct student*) malloc (LEN);
        printf("输入要插入的学号:");
        scanf("%d",&p0->num);
        printf("输入成绩:");
        scanf("%f",&p0->score);
        p1 = p2 = h;
    if(h==NULL)
        {
                h=p0;
                p0->next=NULL;
        }
        else
                while(p0->num > p1->num && p1->next != NULL)
                {
           p2=p1;
                   p1=p1->next;
                }
                if(p1->num > p0->num)
                {
             if(h==p1)
                         {
                                 p0->next=h;
                                 h=p0;
                         }
                         else
                         {
                                 p2->next=p0;
                             p0->next=p1;
                         }
                }
                else
                {
                        p1->next=p0;
                    p0->next=NULL;
                }



        return h;


}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2017-2-8 12:39:32 | 显示全部楼层
因为尾节点的NEXT是NULL所以为0
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-27 22:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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