#
Definition for singly-linked list. # class ListNode(object): # def __init__(self, x): # self.val = x # self.next = None

class Solution(object): def partition(self, head, x): """ :type head: ListNode :type x: int :rtype: ListNode """ h1=l1=ListNode(None) h2=l2=ListNode(None) while head: if head.val < x: l1.next = head l1 = l1.next else: l2.next = head l2 = l2.next head = head.next l2.next = None l1.next = h2.next return h1.next

 

相关文章:

  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2021-09-17
猜你喜欢
  • 2021-08-19
  • 2021-10-25
  • 2021-11-02
  • 2021-11-22
  • 2021-10-11
  • 2021-09-09
  • 2021-06-25
  • 2022-02-16
相关资源
相似解决方案