美文网首页
0086. 分隔链表

0086. 分隔链表

作者: 蓝笔头 | 来源:发表于2021-09-06 12:44 被阅读0次

题目地址

https://leetcode-cn.com/problems/partition-list/

题目描述

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

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



示例:

输入: head = 1->4->3->2->5->2, x = 3
输出: 1->2->2->4->3->5

题解

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode partition(ListNode head, int x) {
        ListNode smallHead = new ListNode();
        ListNode largeHead = new ListNode();

        ListNode smallTail = smallHead;
        ListNode largeTail = largeHead;
        while (head != null) {
            if (head.val >= x) {
                // head 的值大于等于 x,追加到 large 链表
                largeTail.next = head;
                largeTail = largeTail.next;
            } else {
                // head 的值小于 x,追加到 small 链表
                smallTail.next = head;
                smallTail = smallTail.next;
            }
            head = head.next;
        }
        
        // 合并两个链表
        smallTail.next = largeHead.next;
        largeTail.next = null;

        return smallHead.next;
    }

}

相关文章

  • 0086. 分隔链表

    题目地址 https://leetcode-cn.com/problems/partition-list/[htt...

  • Leetcode归类

    链表: Leetcode-725:分隔链表

  • 分隔链表

    给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点之前。 你应当保留...

  • Swift - LeetCode - 分隔链表

    题目 分隔链表 问题: 给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x ...

  • 86. 分隔链表

    86. 分隔链表 问题 给定一个链表和一个特定值 ,对链表进行分隔,使得所有小于 的节点都在大于或等于的节点之前。...

  • leetcode链表之分隔链表

    86、分隔链表[https://leetcode-cn.com/problems/partition-list/]...

  • leetcode链表之分隔链表

    725、分隔链表[https://leetcode-cn.com/problems/split-linked-li...

  • LeetCode 725. 分隔链表

    725. 分隔链表 给定一个头结点为 root 的链表, 编写一个函数以将链表分隔为 k 个连续的部分。 每部分的...

  • LeetCode 86. 分隔链表

    86. 分隔链表 给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点...

  • 每日一题2. 分隔链表

    86. 分隔链表 给定一个链表和一个特定值 x,对链表进行分隔,使得所有小于 x 的节点都在大于或等于 x 的节点...

网友评论

      本文标题:0086. 分隔链表

      本文链接:https://www.haomeiwen.com/subject/jdmewltx.html