【链表】Leetcode 86. 分隔链表【中等】

分隔链表

  • 给你一个链表的头节点 head 和一个特定值 x ,请你对链表进行分隔,使得所有 小于 x 的节点都出现在 大于或等于 x 的节点之前。

你应当 保留 两个分区中每个节点的初始相对位置。

示例 1:

在这里插入图片描述
输入:head = [1,4,3,2,5,2], x = 3
输出:[1,2,2,4,3,5]

解题思路

  • 将链表分隔成两部分,使得所有小于 x 的节点都出现在大于或等于 x 的节点之前,同时保留原有节点的相对位置。
  • 使用两个指针分别构建两个链表:
  •   1、小于 x 的节点构成一个链表。
    
  •  2、大于或等于 x 的节点构成另一个链表。
    
  •  3、最后将这两个链表连接起来。
    

Java实现

public class PartitionLinked {
    public static class ListNode {
        int val;
        ListNode next;
        ListNode(int x) { val = x; }
    }

    public ListNode partition(ListNode head, int x) {
        // 创建两个哨兵节点
        ListNode before = new ListNode(0);
        ListNode after = new ListNode(0);
        
        // 指向当前处理节点的指针
        ListNode beforeHead = before;
        ListNode afterHead = after;
        
        // 遍历原链表
        ListNode current = head;
        while (current != null) {
            if (current.val < x) {
                //加入before链表
                before.next = current;
                before = before.next;
            } else {
                //加入after链表
                after.next = current;
                after = after.next;
            }
            current = current.next;
        }
        
        // 连接两个链表
        after.next = null;
        before.next = afterHead.next;
        
        return beforeHead.next;
    }

    public static void main(String[] args) {
        PartitionLinked partitionLinked = new PartitionLinked();

        // 创建示例链表 1->4->3->2->5->2
        ListNode head = new ListNode(1);
        head.next = new ListNode(4);
        head.next.next = new ListNode(3);
        head.next.next.next = new ListNode(2);
        head.next.next.next.next = new ListNode(5);
        head.next.next.next.next.next = new ListNode(2);

        // 分隔链表
        ListNode newHead = partitionLinked.partition(head, 3);
        printList(newHead); // 输出: 1->2->2->4->3->5
    }

    // 辅助方法:打印链表
    public static void printList(ListNode head) {
        ListNode current = head;
        while (current != null) {
            System.out.print(current.val);
            if (current.next != null) {
                System.out.print("->");
            }
            current = current.next;
        }
        System.out.println();
    }
}

时间空间复杂度

  • 时间复杂度:O(n),其中 n 是链表的节点数。需要遍历链表一次。
  • 空间复杂度:O(1)。

相关推荐

  1. 【力扣】86. 分隔

    2024-06-06 21:58:08       40 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-06-06 21:58:08       98 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-06-06 21:58:08       106 阅读
  3. 在Django里面运行非项目文件

    2024-06-06 21:58:08       87 阅读
  4. Python语言-面向对象

    2024-06-06 21:58:08       96 阅读

热门阅读

  1. CSS变量 -- var() 使用教程

    2024-06-06 21:58:08       23 阅读
  2. CSS简述(1)

    2024-06-06 21:58:08       23 阅读
  3. 9. 媒体查询与响应式设计

    2024-06-06 21:58:08       30 阅读
  4. 网络安全中攻击溯源方法

    2024-06-06 21:58:08       27 阅读
  5. Ant-Design-Vue动态表头并填充数据

    2024-06-06 21:58:08       29 阅读
  6. Unreal Engine游戏引擎小白入门指南

    2024-06-06 21:58:08       31 阅读
  7. SQL常用语句--模糊查询LIKE

    2024-06-06 21:58:08       31 阅读
  8. 一篇想要成为Python编程大佬,看这篇就够了

    2024-06-06 21:58:08       36 阅读
  9. 通过Slf4j中的MDC实现在日志中添加用户IP功能

    2024-06-06 21:58:08       33 阅读
  10. BOOT ISO和DVD ISO的区别

    2024-06-06 21:58:08       30 阅读
  11. nacos增加修改配置实时生效

    2024-06-06 21:58:08       31 阅读
  12. redis集群

    2024-06-06 21:58:08       31 阅读
  13. VOJ 圣诞树 题解 最短路径 dijkstra算法

    2024-06-06 21:58:08       33 阅读