wdwhszw 发表于 2021-2-2 14:58:28

链表输入问题

请问为什么输入有问题?

#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);
}



jackz007 发表于 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() 格式描述符字符串中,最好不要出现与格式描述符无关的任何字符。像楼主的这种情况,在键盘输入的时候,两个数之间必须要有逗号相隔。

l_l_t 发表于 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;
}
页: [1]
查看完整版本: 链表输入问题