^334 2022-02-05 20:33 采纳率: 88.5%
浏览 35
已结题

能帮我看一下我的链表哪里错了吗please

问题遇到的现象和发生背景
问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

#include<stdio.h>
#include<stdlib.h>
typedef struct list{
    int date;
    struct list* next;

}node;
int main()
{
    int a;
    int b;
    int i,j;
    printf("请输入链表节点为几");
    scanf_s("%d", &a);
    printf("请输入链表数据");
    int* p = (int*)malloc(a * sizeof(int));
    for (j = 0; j < a; j++)
    {
        scanf_s("%d\n", &p[j]);
    }
    node* head = (node*)malloc(sizeof(node));
    head->next = NULL;
    for (i = 0; i < a; i++)
    {
        node*node1= (node*)malloc( sizeof(node));
        node1->date = p[j];
        node1->next = head->next;
        head->next = node1;

    }
    return head;
    node* h;
    h = head->next;
    while (p!= NULL)
    {
        printf("%d",h->date );
        h = h->next;
    }
  • 写回答

1条回答 默认 最新

  • qzjhjxj 2022-02-05 20:44
    关注

    修改处见注释,供参考:

    #include<stdio.h>
    #include<stdlib.h>
    typedef struct list{
        int date;
        struct list* next;
    
    }node;
    int main()
    {
        int a;
        int b;
        int i,j;
        printf("请输入链表节点为几");
        scanf_s("%d", &a);
        printf("请输入链表数据");
        int* p = (int*)malloc(a * sizeof(int));
        for (j = 0; j < a; j++)
        {
            scanf_s("%d", &p[j]); //scanf_s("%d\n", &p[j]);
        }
        node* head = (node*)malloc(sizeof(node));
        head->next = NULL;
        for (i = 0; i < a; i++)
        {
            node*node1= (node*)malloc( sizeof(node));
            node1->date = p[i];    //node1->date = p[j];
            node1->next = head->next;
            head->next = node1;
    
        }
                                //return head;
        node* h;
        h = head->next;
        while (h!= NULL)        //while (p!= NULL)
        {
            printf("%d",h->date );
            h = h->next;
        }
        return 0;
    }
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 2月14日
  • 已采纳回答 2月6日
  • 创建了问题 2月5日

悬赏问题

  • ¥15 已知隐函数其中一个变量τ的具体值,求另一个变量
  • ¥15 r语言Hurst指数
  • ¥15 Acrn IVSHMEM doorbell问题
  • ¥15 yolov5中的val测试集训练时数量变小问题
  • ¥15 MPLS/VPN实验中MPLS的配置问题
  • ¥15 materialstudio氢键计算问题
  • ¥15 echarts图表制作
  • ¥15 halcon根据玻璃面板纹路取区域
  • ¥15 HFSS设计小型化180度耦合器
  • ¥15 使用CInternetSession,CHttpFile读取网页文件时有些电脑上会卡住怎么办?