Skip to content

Latest commit

 

History

History
73 lines (52 loc) · 2 KB

86-partition-list.md

File metadata and controls

73 lines (52 loc) · 2 KB

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

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

 

示例 1:

输入:head = [1,4,3,2,5,2], x = 3
输出:[1,2,2,4,3,5]

示例 2:

输入:head = [2,1], x = 2
输出:[1,2]

 

提示:

  • 链表中节点的数目在范围 [0, 200]
  • -100 <= Node.val <= 100
  • -200 <= x <= 200

thinking

遍历链表,找到一个大于 x 的数,记录前一个指针 p。继续遍历,遇到小于 x 的数,插入到 p 后面,并将 p 往后移动一位。

code

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution:
    def partition(self, head: ListNode, x: int) -> ListNode:
        s = ListNode(next=head)
        pre = s
        cur = head

        while cur and cur.val < x:
            pre, cur = cur, cur.next

        p = pre

        while cur:
            if cur.val < x:    
                next = cur.next

                # 插入到 p 后面,并将 p 往后移动
                cur.next = p.next
                p.next = cur
                p = cur

                pre.next = next                
                cur = next
            else:
                pre, cur = cur, cur.next

        return s.next