链表分割(LeetCode刷题)

目录

一、问题描述

二、 思路

三、代码


一、问题描述

oj链接:链表分割_牛客题霸_牛客网 (nowcoder.com)

二、 思路

     新建两个链表,把小于x的尾插到其中一个链表,大于等于x的尾插到另一个链表,然后把这两个链表链接起来。注意我们新建的两个链表最好用带哨兵位的头结点的链表,这样可以避免我们在尾插时需要对空单独分析的问题。

 三、代码

class Partition {
public:
    ListNode* partition(ListNode* pHead, int x) {
        // write code here
        struct ListNode* lesshead = NULL,*lesstail= NULL;
        struct ListNode* greaterhead = NULL,*greatertail= NULL;
        struct ListNode* cur = pHead;

        lesshead = lesstail = (struct ListNode*)malloc(sizeof(struct ListNode));
        greaterhead = greatertail= (struct ListNode*)malloc(sizeof(struct ListNode));
        while(cur)
        {
            if(cur->val<x)
            {
                lesstail->next = cur;
                lesstail=lesstail->next;
            }
            else 
            {
                greatertail->next = cur;
                greatertail=greatertail->next;
            }
            cur = cur->next;
        }
        greatertail->next=NULL;
        lesstail->next = greaterhead->next;
        free(greaterhead);
        struct ListNode* p = lesshead->next;
        free(lesshead);
        return p;
    }
};

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值