Leetcode初学——分割链表

题目:

分析:

这道题我用了一个投机取巧的方法

我们新建一个同等长度的链表

然后对原链表进行遍历

小于x的先填入链表

再遍历一次

将大于x的也填入链表

这样时间复杂度为O(n)

代码:

class Solution {
    public ListNode partition(ListNode head, int x) {
        ListNode new_head=new ListNode(0);
        ListNode temp_head=head;
        ListNode temp=new_head;
        while(temp_head!=null){
            temp.next=new ListNode(0);
            temp_head=temp_head.next;
            temp=temp.next;
        }
        temp_head=head;
        temp=new_head.next;
        while(temp_head!=null){
            if(temp_head.val<x) {
                temp.val = temp_head.val;
                temp=temp.next;
            }
            temp_head=temp_head.next;
        }
        temp_head=head;
        while(temp_head!=null){
            if(temp_head.val>=x) {
                temp.val = temp_head.val;
                temp=temp.next;
            }
            temp_head=temp_head.next;
        }
        return new_head.next;
    }


}

结果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值