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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
use std::fmt::Debug;
use arrow::types::NativeType;
use crate::index::IdxSize;
fn find_partition_points<T>(values: &[T], n: usize, reverse: bool) -> Vec<usize>
where
T: Debug + NativeType + PartialOrd,
{
let len = values.len();
if n > len {
return find_partition_points(values, len / 2, reverse);
}
if n < 2 {
return vec![];
}
let chunk_size = len / n;
let mut partition_points = Vec::with_capacity(n + 1);
let mut start_idx = 0;
loop {
let end_idx = start_idx + chunk_size;
if end_idx >= len {
break;
}
let part = &values[start_idx..end_idx];
let latest_val = values[end_idx];
let idx = if reverse {
part.partition_point(|v| *v > latest_val)
} else {
part.partition_point(|v| *v < latest_val)
};
if idx != 0 {
partition_points.push(idx + start_idx)
}
start_idx += chunk_size;
}
partition_points
}
pub fn create_clean_partitions<T>(values: &[T], n: usize, reverse: bool) -> Vec<&[T]>
where
T: Debug + NativeType + PartialOrd,
{
let part_idx = find_partition_points(values, n, reverse);
let mut out = Vec::with_capacity(n + 1);
let mut start_idx = 0_usize;
for end_idx in part_idx {
if end_idx != start_idx {
out.push(&values[start_idx..end_idx]);
start_idx = end_idx;
}
}
let latest = &values[start_idx..];
if !latest.is_empty() {
out.push(latest)
}
out
}
pub fn partition_to_groups_amortized<T>(
values: &[T],
first_group_offset: IdxSize,
nulls_first: bool,
offset: IdxSize,
out: &mut Vec<[IdxSize; 2]>,
) where
T: Debug + NativeType + PartialOrd,
{
if let Some(mut first) = values.get(0) {
out.clear();
if nulls_first && first_group_offset > 0 {
out.push([0, first_group_offset])
}
let mut first_idx = if nulls_first { first_group_offset } else { 0 } + offset;
for val in values {
if val != first {
let val_ptr = val as *const T;
let first_ptr = first as *const T;
let len = unsafe { val_ptr.offset_from(first_ptr) } as IdxSize;
out.push([first_idx, len]);
first_idx += len;
first = val;
}
}
if nulls_first {
out.push([
first_idx,
values.len() as IdxSize + first_group_offset - first_idx,
]);
} else {
out.push([first_idx, values.len() as IdxSize - (first_idx - offset)]);
}
if !nulls_first && first_group_offset > 0 {
out.push([values.len() as IdxSize + offset, first_group_offset])
}
}
}
pub fn partition_to_groups<T>(
values: &[T],
first_group_offset: IdxSize,
nulls_first: bool,
offset: IdxSize,
) -> Vec<[IdxSize; 2]>
where
T: Debug + NativeType + PartialOrd,
{
if values.is_empty() {
return vec![];
}
let mut out = Vec::with_capacity(values.len() / 10);
partition_to_groups_amortized(values, first_group_offset, nulls_first, offset, &mut out);
out
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn test_partition_points() {
let values = &[1, 3, 3, 3, 3, 5, 5, 5, 9, 9, 10];
assert_eq!(find_partition_points(values, 4, false), &[1, 5, 8, 10]);
assert_eq!(
partition_to_groups(values, 0, true, 0),
&[[0, 1], [1, 4], [5, 3], [8, 2], [10, 1]]
);
assert_eq!(
partition_to_groups(values, 5, true, 0),
&[[0, 5], [5, 1], [6, 4], [10, 3], [13, 2], [15, 1]]
);
assert_eq!(
partition_to_groups(values, 5, false, 0),
&[[0, 1], [1, 4], [5, 3], [8, 2], [10, 1], [11, 5]]
);
}
}