Zi_XianG0218 2021-12-24 20:04 采纳率: 100%
浏览 37
已结题

如何用倒序赋值链表,一道填空题

填空:以下程序的功能为:从键盘输入1个字符串,调用函数建立反序的链表,然后输出整个链表。补充完善程序,以实现其功能。


#include <stdio.h>

#include <malloc.h>

struct node

{  char data;

   struct node *link;

} *head;

Ins(struct node  ___________)

{

   if(head==NULL)

   {   q->link==NULL;

       head=q;

   }

   else

   {   q->link=__________;

       head=q;

   }

}

main()

{   char ch;

struct node *p;

head=NULL;

while((ch=getchar())!='\n')

{

   p=________________;

   p->data=ch;

   Ins(____________);

}

p=head;

while(p!=NULL)

{

   printf("%c",p->data);
  ________________;
   ;

}

}
  • 写回答

2条回答 默认 最新

  • _GX_ 2021-12-24 20:52
    关注
    
    #include <stdio.h>
    #include <malloc.h>
    
    struct node
    {
        char data;
        struct node *link;
    } * head;
    
    void Ins(struct node *q)
    {
        if (head == NULL)
        {
            q->link = NULL;
            head = q;
        }
        else
        {
            q->link = head;
            head = q;
        }
    }
    
    int main()
    {
        char ch;
        struct node *p;
        head = NULL;
        while ((ch = getchar()) != '\n')
        {
            p = (struct node *)malloc(sizeof(struct node));
            p->data = ch;
            Ins(p);
        }
        p = head;
        while (p != NULL)
        {
            printf("%c", p->data);
            p = p->link;
        }
        return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 1月1日
  • 已采纳回答 12月24日
  • 创建了问题 12月24日

悬赏问题

  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化