鱼C论坛

 找回密码
 立即注册
查看: 2837|回复: 5

c语言动态链表的问题 大神帮忙指出下错误吧

[复制链接]
发表于 2013-11-12 22:57:04 | 显示全部楼层 |阅读模式

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

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

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

struct stu
{
        int num;
        float score; /*改成int score;就可以*/
        struct stu *next;
};

struct stu *creat(int n);

main()
{
        int n;
        struct stu *p;
        printf("input n:");
        scanf("%d",&n);
        p=creat(n);
}

struct stu *creat(int n)
{
        int i;
        struct stu *head,*pf,*pb;
       
        for(i=0;i<n;i++)
        {
                pb=(struct stu *)malloc(sizeof(struct stu));
                printf("input number and score:");
                scanf("%d%f",&pb->num,&pb->score);/*%f改成%d,就可以 */
                if(i==0)
                {
                        pf=head=pb;
                }
                else
                {
                        pf->next=pb;
                        pb->next=NULL;
                        pf=pb;
                }
        }
        return head;
}

想了一晚上不知道哪里出了问题!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2013-11-12 22:58:53 | 显示全部楼层
自己顶顶!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-11-12 23:33:33 | 显示全部楼层
你的struct stu *creat(int n)函数,返回值是一个局部变量,把你的头指针传进去赋值吧。
试试看。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-11-12 23:39:25 | 显示全部楼层
我用你这没报错额。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-11-12 23:44:03 From FishC Mobile | 显示全部楼层
vsa_ppp 发表于 2013-11-12 23:39
我用你这没报错额。

编译连接都没错  就是运行后输入num和score   就出错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2013-11-13 00:04:41 | 显示全部楼层
本帖最后由 思无邪 于 2013-11-13 00:07 编辑

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

struct stu
{
         int num;
         float score;
         struct stu *next;
};

void creat(struct stu *,int n);

void main()
{
         int n;
         struct stu *p = 0;
         printf("input n:");
         scanf("%d",&n);
         creat(p,n);
}

void creat(struct stu *head,int n)
{
         int i;
         struct stu *pf,*pb;
         
         for(i=0;i<n;i++)
         {
                 pb=(struct stu *)malloc(sizeof(struct stu));
                 printf("input number and score:");
                 scanf("%d,%f",&(pb->num),&(pb->score));/*这里两个数字连在一起,用逗号分开,不然难以区分,还有你的地址取的有问题*/
                                 printf("%d,%f\n",pb->num,pb->score);
                                 getchar();  /* 截取掉输入流里的回车,也可以用一个清输入流的函数,具体自己查吧*/                              
                 if(i==0)
                 {
                         pf=head=pb;
                 }
                 else
                 {
                         pf->next=pb;
                         pb->next=NULL;
                         pf=pb;
                 }
         }
         
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-25 10:57

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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