zoukankan      html  css  js  c++  java
  • Java实现 LeetCode 86 分割链表

    86. 分隔链表

    给定一个链表和一个特定值 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(int x) { val = x; }
     * }
     */
    class Solution {
          public ListNode partition(ListNode head, int x) {
            ListNode dummyHead1 = new ListNode(0);
            ListNode dummyHead2 = new ListNode(0);
            ListNode node1 = dummyHead1;
            ListNode node2 = dummyHead2;
            while (head != null) {
                if (head.val < x) {
                    node1.next = head;
                    head = head.next;
                    node1 = node1.next;
                    node1.next = null;
                } else {
                    node2.next = head;
                    head = head.next;
                    node2 = node2.next;
                    node2.next = null;
                }
            }
            node1.next = dummyHead2.next;
            return dummyHead1.next;
        }
    }
    
  • 相关阅读:
    条件语句实例
    数据类型
    C#与.NET概述
    c#循环
    语句
    数组

    英文文献中的数学符号
    如何计算协方差、 协方差矩阵 、 相关系数 、 马氏距离
    opengl 笔记
  • 原文地址:https://www.cnblogs.com/a1439775520/p/13076227.html
Copyright © 2011-2022 走看看