文章

4

粉丝

11

获赞

20

访问

926

头像
合并果子 题解:链表解法
P1544 中南大学机试题
发布于2025年3月7日 22:57
阅读数 159

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

struct ListNode {
    int data;
    struct ListNode *next;
};

//排序 
int compare(const void *a, const void *b){
    return *(int*)a - *(int*)b;
}

 

//建立链表

struct ListNode* readList(int arr[],int n){
    struct ListNode *head = (struct ListNode*)malloc(sizeof(struct ListNode));
    head->next = NULL;
    struct ListNode *tail = head;
    for(int i = 0; i < n; i++){
        struct ListNode *node = (struct ListNode*)malloc(sizeof(struct ListNode));
        node->data = arr[i];
        node->next = NULL;
        tail->next = node;
        tail = node;
    }
    return head->next;
}

//合并链表前两项,并按顺序插入

struct ListNode* insertNode(struct...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发