C语言 分割链表

题目来源:

代码部分,参考官方题解的写法:

// 思路: 就是把原始链表,拆分为2部分,最后再拼接一下。

struct ListNode* partition(struct ListNode* head, int x) {
    struct ListNode* small = malloc(sizeof(struct ListNode));
    struct ListNode* smallHead = small;

    struct ListNode* big = malloc(sizeof(struct ListNode));
    struct ListNode* bigHead = big;


    while(head != NULL) {
        if (head->val < x) {
            small->next = head;
            small = small->next;   // 这里先确定 small.next 的值。 然后再看 small 自身!!
        } else {
            big->next = head;
            big = big->next;
        }

        head = head->next;
    }

    // 拼接
    big->next = NULL;
    small->next = bigHead->next;

    return smallHead->next;
}

问题与思考:

  1. 对下面这个写法进行分析:

struct ListNode* small = malloc(sizeof(struct ListNode));
struct ListNode* smallHead = small;

其中 small 是一个指针, 而且申请内存了。
smallHead 也是一个指针,smallHead 其实是把 small 复制一份。
所以这里在命名上,我觉得不应该叫做 smallHead, 叫做 smallCopy 比较合适。

  1. while(head != NULL)

这个写法,能否写成:

while(head)

答案是能。而且也能正常通过。
问题是: 有什么区别??

  1. 第三点已经写在代码注释里面了。

small->next = head;
small = small->next; // 这里先确定 small.next 的值。 然后再看 small 自身!!

small = small->next, 这个写法,其实在python 中就是 head = head.next, 之前写过很多, 就是把节点往下移动,往下传递。
为什么一到 C 语言里面, 就觉得很陌生呢。

以下是C语言实现链表归并的示例代码: ```c #include <stdio.h> #include <stdlib.h> // 定义链表结构体 struct ListNode { int val; struct ListNode *next; }; // 合并两个有序链表 struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) { // 定义哨兵节点 struct ListNode *dummy = (struct ListNode *)malloc(sizeof(struct ListNode)); dummy->next = NULL; struct ListNode *cur = dummy; // 遍历两个链表,将较小的节点加入新链表中 while (l1 && l2) { if (l1->val <= l2->val) { cur->next = l1; l1 = l1->next; } else { cur->next = l2; l2 = l2->next; } cur = cur->next; } // 将剩余的节点加入新链表中 if (l1) { cur->next = l1; } else { cur->next = l2; } return dummy->next; } // 归并排序 struct ListNode* sortList(struct ListNode* head) { if (!head || !head->next) { return head; } // 快慢指针找到链表中点 struct ListNode *slow = head, *fast = head->next; while (fast && fast->next) { slow = slow->next; fast = fast->next->next; } // 分割链表 struct ListNode *mid = slow->next; slow->next = NULL; // 递归排序左右两个链表 struct ListNode *left = sortList(head); struct ListNode *right = sortList(mid); // 合并两个有序链表 return mergeTwoLists(left, right); } // 创建链表 struct ListNode* createList(int arr[], int n) { if (n == 0) { return NULL; } struct ListNode *head = (struct ListNode *)malloc(sizeof(struct ListNode)); head->val = arr[0]; head->next = NULL; struct ListNode *cur = head; for (int i = 1; i < n; i++) { struct ListNode *node = (struct ListNode *)malloc(sizeof(struct ListNode)); node->val = arr[i]; node->next = NULL; cur->next = node; cur = cur->next; } return head; } // 打印链表 void printList(struct ListNode *head) { while (head) { printf("%d ", head->val); head = head->next; } printf("\n"); } int main() { int arr[] = {4, 2, 1, 3}; int n = sizeof(arr) / sizeof(int); struct ListNode *head = createList(arr, n); printf("原链表:"); printList(head); head = sortList(head); printf("排序后的链表:"); printList(head); return 0; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

waterHBO

老哥,支持一下啊

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值