【超详细】c语言实现链表分割

题目链接:链表分割_牛客题霸_牛客网

本题目在牛客网难度为较难,但是在整理思路画图后,题目难度并不大,下面说说我的思路

假设我们这里有一个链表为:2,3,5,1,7,2,然后找比4小的数字放在前面,比4大的数字放在后面,并且不改变原来的顺序,所以得出结果为:2,3,1,2,5,7

上来我们的链表应该是这样:

然后我们定义带哨兵卫的2个节点(用来保存小于4的节点和大于4的节点)

 

最后把2个链表连接起来(记住bigTail要置空并且smallTail->next指向为bigHead的下一个)

 

 代码如下:

class Partition {
public:
    ListNode* partition(ListNode* pHead, int x) {
        struct ListNode* cur=pHead;
        //保存小于x的值
        struct ListNode* smallHead=(struct ListNode*)malloc(sizeof(struct ListNode));
        smallHead->next=NULL;
        struct ListNode* smallTail=smallHead;
        //保存大于x的值
        struct ListNode* bigHead=(struct ListNode*)malloc(sizeof(struct ListNode));
        bigHead->next=NULL;
        struct ListNode* bigTail=bigHead;
        while(cur)
        {
            if(cur->val<x)
            {
                smallTail->next=cur;
                smallTail=smallTail->next;
            }
            else
            {
                bigTail->next=cur;
                bigTail=bigTail->next;
            }
            cur=cur->next;
        }
        //这里置空不能忘记,一开始我就没想到
        bigTail->next=NULL;
        smallTail->next=bigHead->next;
        free(bigHead);
        struct ListNode* copysmallHead=smallHead->next;
        free(smallHead);
        return copysmallHead;
    }
};

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是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
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值