-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPartitionList.cs
42 lines (33 loc) · 978 Bytes
/
PartitionList.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
using AlgorithmsAndDS.Helpers;
namespace AlgorithmsAndDS.LinkedLists.Medium;
// 86. Partition List
public class PartitionList
{
// Time complexity: O(n); Space complexity: O(n).
public ListNode Partition(ListNode head, int x)
{
if (head == null) return null;
var smallerPrevHead = new ListNode();
var smallerNode = smallerPrevHead;
var greaterPrevHead = new ListNode();
var greaterNode = greaterPrevHead;
var curr = head;
while (curr != null)
{
if (curr.val >= x)
{
greaterNode.next = curr;
greaterNode = greaterNode.next;
}
else
{
smallerNode.next = curr;
smallerNode = smallerNode.next;
}
curr = curr.next;
}
greaterNode.next = null;
smallerNode.next = greaterPrevHead.next;
return smallerPrevHead.next;
}
}