美文网首页
分隔链表

分隔链表

作者: 小白学编程 | 来源:发表于2018-12-02 20:08 被阅读0次

    给定一个链表和一个特定值 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 min = new ListNode(0);
            ListNode max = new ListNode(0);
            ListNode tmin = min;
            ListNode tmax = max;
            while (head != null) {
                if (head.val >= x) {
                    max.next = head;
                    max = head;
                }else if (head.val < x) {
                    min.next = head;
                    min = head;
                }
                head = head.next;
            }
            min.next = null;
            max.next = null;
            
            min.next = tmax.next;
            return tmin.next;
        }
    }
    

    相关文章

      网友评论

          本文标题:分隔链表

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