• 一、题目
  • 二、解题思路
  • 三、解题代码

    一、题目

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

    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的节点排在大于等于x的节点之前。

    你应该保留两部分内链表节点原有的相对顺序。

    二、解题思路

    依据题意,是要根据值x对链表进行分割操作,具体是指将所有小于x的节点放到不小于x的节点之前,咋一看和快速排序的分割有些类似,但是这个题的不同之处在于只要求将小于x的节点放到前面,而并不要求对元素进行排序。

    这种分割的题使用两路指针即可轻松解决。左边指针指向小于x的节点,右边指针指向不小于x的节点。由于左右头节点不确定,我们可以使用两个dummy节点。

    三、解题代码

    1. /**
    2. * Definition for singly-linked list.
    3. * public class ListNode {
    4. * int val;
    5. * ListNode next;
    6. * ListNode(int x) { val = x; }
    7. * }
    8. */
    9. public class Solution {
    10. public ListNode partition(ListNode head, int x) {
    11. ListNode leftDummy = new ListNode(0);
    12. ListNode leftCurr = leftDummy;
    13. ListNode rightDummy = new ListNode(0);
    14. ListNode rightCurr = rightDummy;
    15. ListNode runner = head;
    16. while (runner != null) {
    17. if (runner.val < x) {
    18. leftCurr.next = runner;
    19. leftCurr = leftCurr.next;
    20. } else {
    21. rightCurr.next = runner;
    22. rightCurr = rightCurr.next;
    23. }
    24. runner = runner.next;
    25. }
    26. // cut off ListNode after rightCurr to avoid cylic
    27. rightCurr.next = null;
    28. leftCurr.next = rightDummy.next;
    29. return leftDummy.next;
    30. }
    31. }