鱼C论坛

 找回密码
 立即注册
查看: 579|回复: 2

[已解决]链表输入问题

[复制链接]
发表于 2021-2-2 14:58:28 | 显示全部楼层 |阅读模式

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

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

x
请问为什么输入有问题?

#include<stdio.h>
#include<stdlib.h>
#define NULL 0
#define LEN sizeof(struct nb)
int n;

struct nb
{
        long xh;
        float cj;
        struct nb *next;
};

struct nb *p()
{
        n=0;
        struct nb *head,*p1,*p2;
        p1=p2=(struct nb *)malloc(LEN);
        head=NULL;
        scanf("%d,%f",&p1->xh,&p1->cj);
        while(p1->xh)
        {
                n=n+1;
                if(n==1)
                        head=p1;
                else
                        p2->next=p1;
                p2=p1;
                p1=(struct nb *)malloc(LEN);
                scanf("%d,%f",p1->xh,p1->cj);
        }
        p2->next=NULL;
        return head;
}

void sc(struct nb *head)
{
        struct nb *p;
        p=head;
        if(head)
        {
                do
                {
                        printf("%d   %f",p->xh,p->cj);
                        p=p->next;
                }while(p);
        }
}

void main()
{
        struct nb *b;
        b=p();
        sc(b);
}



最佳答案
2021-2-3 15:44:05
问题多多
 p1=(struct nb *)malloc(LEN);
                scanf("%d,%f",p1->xh,p1->cj);
这里要用
scanf("%d,%f",&p1->xh,&p1->cj);
scanf函数的引号里面的逗号输入的时候要输
void main()
{
        struct nb *b;
        b=p();
        sc(b);
}
这里的函数p()的返回值是在p里面定义的,调用完就被释放了,不能这样做 ,要在main里面定义,然后在p函数里用二维指针修改
还有,链表用完了要释放内存,加了一个release函数
这是我改完的
#include<stdio.h>
#include<stdlib.h>

#define LEN sizeof(struct nb)

struct nb
{
        long xh;
        float cj;
        struct nb *next;
};

void p(struct nb **head)
{
        struct nb *p1,*p2;
        p1=p2=(struct nb *)malloc(LEN);
        scanf("%d%f",&p1->xh,&p1->cj);
        while(p1->xh)//第一个数字输入0时结束
        {
                if((*head)==NULL)
                        (*head)=p1;
                else
                        p2->next=p1;
                        
                p2=p1;
                p1=(struct nb *)malloc(LEN);
                scanf("%d%f",&p1->xh,&p1->cj);
        }
        p2->next=NULL;
}

void sc(struct nb *head)
{
        struct nb *p;
        p=head;
        if(head!=NULL)
        {
                do
                {
                        printf("%d   %f\n",p->xh,p->cj);
                        p=p->next;
                }
                while(p!=NULL);
        }
}

void release(struct nb **head)
{
        struct nb *temp;
        while((*head)!=NULL)
        {
                temp=*head;
                *head=(*head)->next;
                free(temp);
        }
}

int main(void)
{
        struct nb *head=NULL;
        
        p(&head);
        sc(head);
        release(&head);
        
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-2-2 15:07:08 | 显示全部楼层
本帖最后由 jackz007 于 2021-2-2 15:10 编辑
        scanf("%d,%f",&p1->xh,&p1->cj);
. . . . . .
              scanf("%d,%f",p1->xh,p1->cj);
      去掉 scanf() 函数格式描述符之间的逗号试试,像这样
        scanf("%d%f",&p1->xh,&p1->cj);
. . . . . .
              scanf("%d%f",p1->xh,p1->cj);
        scanf() 格式描述符字符串中,最好不要出现与格式描述符无关的任何字符。像楼主的这种情况,在键盘输入的时候,两个数之间必须要有逗号相隔。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-2-3 15:44:05 | 显示全部楼层    本楼为最佳答案   
问题多多
 p1=(struct nb *)malloc(LEN);
                scanf("%d,%f",p1->xh,p1->cj);
这里要用
scanf("%d,%f",&p1->xh,&p1->cj);
scanf函数的引号里面的逗号输入的时候要输
void main()
{
        struct nb *b;
        b=p();
        sc(b);
}
这里的函数p()的返回值是在p里面定义的,调用完就被释放了,不能这样做 ,要在main里面定义,然后在p函数里用二维指针修改
还有,链表用完了要释放内存,加了一个release函数
这是我改完的
#include<stdio.h>
#include<stdlib.h>

#define LEN sizeof(struct nb)

struct nb
{
        long xh;
        float cj;
        struct nb *next;
};

void p(struct nb **head)
{
        struct nb *p1,*p2;
        p1=p2=(struct nb *)malloc(LEN);
        scanf("%d%f",&p1->xh,&p1->cj);
        while(p1->xh)//第一个数字输入0时结束
        {
                if((*head)==NULL)
                        (*head)=p1;
                else
                        p2->next=p1;
                        
                p2=p1;
                p1=(struct nb *)malloc(LEN);
                scanf("%d%f",&p1->xh,&p1->cj);
        }
        p2->next=NULL;
}

void sc(struct nb *head)
{
        struct nb *p;
        p=head;
        if(head!=NULL)
        {
                do
                {
                        printf("%d   %f\n",p->xh,p->cj);
                        p=p->next;
                }
                while(p!=NULL);
        }
}

void release(struct nb **head)
{
        struct nb *temp;
        while((*head)!=NULL)
        {
                temp=*head;
                *head=(*head)->next;
                free(temp);
        }
}

int main(void)
{
        struct nb *head=NULL;
        
        p(&head);
        sc(head);
        release(&head);
        
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-15 03:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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