沉迷摸鱼无法自拔 2022-05-07 17:53 采纳率: 70.6%
浏览 28
已结题

请问这个问题怎么解决

问题遇到的现象和发生背景

img

问题相关代码,请勿粘贴截图
#include<stdio.h>
#include<stdlib.h>
struct node
{
    int data;
    struct node* next;
};
typedef struct node* ptr;
int main()
{
    int n;
    ptr head = (ptr)malloc(sizeof(struct node));
    head->data = 0;
    head->next = NULL;
    ptr temp, con;
    temp = head;
    con = head;
    while (scanf_s("%d", &n), n != -1)
    {
        ptr t = (ptr)malloc(sizeof(struct node));
        head->next = NULL;
        t->data = n;
        t->next = NULL;
        head = head->next;
    }
    while (scanf_s("%d", &n), n != -1)
    {
        while (temp->next!=NULL)
        {
            if (temp->next->data >= n)
            {
                ptr tmp = (ptr)malloc(sizeof(struct node));
                tmp->next = temp->next;
                tmp->data = n;
                temp->next = tmp;
                break;
            }
            else
            {
                temp = temp->next;
            }
        }
        if (temp->next==NULL)
        {
            ptr x = (ptr)malloc(sizeof(struct node));
            x->data = n;
            x->next = NULL;
            temp->next = x;
        }
    }
    if (con->next == NULL)
    {
        printf("NULL");
    }
    else
    {
        con = con->next;
        while (con->next!=NULL)
        {
            printf("%d", con->data);
            con = con->next;
        }
        printf("%d", con->data);
    }
    return 0;
}

运行结果及报错内容

可进行输入但输入第一组链表后发生中断

我的解答思路和尝试过的方法
我想要达到的结果

合并两个有序链表

  • 写回答

0条回答 默认 最新

    报告相同问题?

    问题事件

    • 系统已结题 5月15日
    • 创建了问题 5月7日

    悬赏问题

    • ¥15 ansys fluent计算闪退
    • ¥15 有关wireshark抓包的问题
    • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
    • ¥15 向数据表用newid方式插入GUID问题
    • ¥15 multisim电路设计
    • ¥20 用keil,写代码解决两个问题,用库函数
    • ¥50 ID中开关量采样信号通道、以及程序流程的设计
    • ¥15 U-Mamba/nnunetv2固定随机数种子
    • ¥15 vba使用jmail发送邮件正文里面怎么加图片
    • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。