86. Partition List

Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal tox.

You should preserve the original relative order of the nodes in each of the two partitions.

For example,
Given 1->4->3->2->5->2 and x = 3,
return 1->2->2->4->3->5.

//使用两个队列,一个存储小于x的,一个存储大于等于x的,然后连接两个队列

class Solution {

    public ListNode partition(ListNode head, int x) {

        ListNode dummy1 = new ListNode(0);

        ListNode dummy2 = new ListNode(0);

        ListNode curr1 = dummy1;

        ListNode curr2 = dummy2;

        while (head != null) {

            if (head.val < x) {

                curr1.next = head;

                curr1 = head;

            } else {

                curr2.next = head;

                curr2 = head;

            }

            head = head.next;

        }

        

        curr2.next = null;//一定要有这句话,比如 5->6->1->2, x=3,c1:1->2,c2:5->6,我们让2指向5了,如果还有这句话,会保持6->1,会形成个cycle

        curr1.next = dummy2.next;

        return dummy1.next;

    }

}

posted @   MarkLeeBYR  阅读(95)  评论(0编辑  收藏  举报
编辑推荐:
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
阅读排行:
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
点击右上角即可分享
微信分享提示