鱼C论坛

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

[已解决]关于链表的字符输入输出疑惑

[复制链接]
发表于 2022-2-25 17:30:38 | 显示全部楼层 |阅读模式

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

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

x
本意是想先输入一个数字表示字符串长度,再输入字符串,将字符串内的字符依次输出
#include <stdio.h>
#include <stdlib.h>

struct node
{
    char zf;
    struct node *next;
};

int main()
{
    int n;
    scanf("%d",&n);
    struct node *head,*rear,*p;
    head=(struct node*)malloc(sizeof(struct node));
    head->next=NULL;
    rear=head;
    for(int i=0;i<n;i++)
    {
        p=(struct node*)malloc(sizeof(struct node));
        scanf("%c",&p->zf);
        rear->next=p;
        rear=p;
     }
    rear->next=NULL;
    p=head->next;
    while(p)
        {
                   printf("%c ",p->zf);
                    p=p->next;
        }
}
运行之后假设输入“4  asdf”输出的结果是“ a s d”
但是将结构体中的char类型换成int类型之后输入“4     1 2 3 4”输出的结果是“1 2 3 4”
最佳答案
2022-2-25 21:03:03
应该是第一次取n的时候,缓冲区里还有一个回车符

可以用 getchar() 吃掉回车符
#include <stdio.h>
#include <stdlib.h>

struct node
{
    char zf;
    struct node *next;
};

int main()
{
    int n;
    scanf("%d",&n);
    getchar();
    struct node *head,*rear,*p;
    head=(struct node*)malloc(sizeof(struct node));
    head->next=NULL;
    rear=head;
    for(int i=0;i<n;i++)
    {
        p=(struct node*)malloc(sizeof(struct node));
        scanf("%c",&p->zf);
        rear->next=p;
        rear=p;
     }
    rear->next=NULL;
    p=head->next;
    while(p)
        {
                   printf("%c ",p->zf);
                    p=p->next;
        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-25 19:25:17 | 显示全部楼层
你的代码,看看这句 printf("%c ",p->zf);
#include <stdio.h>
#include <stdlib.h>

struct node
{
    char zf;
    struct node *next;
};

int main()
{
    int n;
    scanf("%d",&n);
    getchar(); // 忽略空格

    struct node *head, *p, *tmp;

    for(int i=0; i<n; i++)
    {
        tmp=(struct node*)malloc(sizeof(struct node));
        tmp->next=NULL;
        scanf("%c",&tmp->zf);

        // 保存头指针
        if(i==0)        {
            p = tmp;
            head = tmp;
            continue;
        }

        // 交换指针
        p->next=tmp;
        p=tmp;
     }

    p=head;
    while(p)
    {
        printf("%c",p->zf);
        p=p->next;
    }

    return 0;

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

使用道具 举报

发表于 2022-2-25 21:03:03 | 显示全部楼层    本楼为最佳答案   
应该是第一次取n的时候,缓冲区里还有一个回车符

可以用 getchar() 吃掉回车符
#include <stdio.h>
#include <stdlib.h>

struct node
{
    char zf;
    struct node *next;
};

int main()
{
    int n;
    scanf("%d",&n);
    getchar();
    struct node *head,*rear,*p;
    head=(struct node*)malloc(sizeof(struct node));
    head->next=NULL;
    rear=head;
    for(int i=0;i<n;i++)
    {
        p=(struct node*)malloc(sizeof(struct node));
        scanf("%c",&p->zf);
        rear->next=p;
        rear=p;
     }
    rear->next=NULL;
    p=head->next;
    while(p)
        {
                   printf("%c ",p->zf);
                    p=p->next;
        }
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-18 11:37

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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