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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
//! A skip-list-backed ordered set.
//!
//! [`SkipSet`] keeps each element **at most once**, sorted according to a
//! [`Comparator<T>`]. Insert, lookup, and remove are `$O(\log n)$` on average.
//! It wraps [`OrderedSkipList`] and adds uniqueness enforcement plus
//! set-algebra operations (union, intersection, difference, symmetric
//! difference).
//!
//! The ordering is parameterised by `C: Comparator<T>` so that custom
//! orderings can be used without requiring [`Ord`] on the element type.
//!
//! # Key Invariants
//!
//! - Each value is stored at most once. Inserting a value that already exists
//! is a no-op (`insert` returns `false`).
//! - Values are always kept in sorted order.
//! - Values cannot be mutated in place because that could silently break the
//! sorted invariant. To update a value, [`take`] it and re-`insert` the new
//! one.
//!
//! # Intentional Omissions
//!
//! - **No `IterMut`.** Mutable references to stored values could break the
//! sorted invariant without reinsertion.
//!
//! # Method Summary
//!
//! **Constructors:** [`new`], [`with_level_generator`], [`with_comparator`],
//! [`with_comparator_and_level_generator`].
//!
//! **Access:** [`contains`], [`get`], [`get_by_index`], [`first`], [`last`],
//! [`rank`].
//!
//! **Insertion:** [`insert`], [`replace`], [`get_or_insert`],
//! [`get_or_insert_with`].
//!
//! **Removal:** [`remove`], [`take`], [`pop_first`], [`pop_last`], [`retain`],
//! [`drain`], [`extract_if`].
//!
//! **Set operations:** [`union`], [`intersection`], [`difference`],
//! [`symmetric_difference`], [`is_subset`], [`is_superset`],
//! [`is_disjoint`].
//!
//! **Structural:** [`len`], [`is_empty`], [`clear`], [`split_off`],
//! [`split_off_index`], [`append`].
//!
//! **Iteration:** [`iter`], [`into_iter`].
//!
//! # Examples
//!
//! ```rust
//! use skiplist::SkipSet;
//!
//! let mut set = SkipSet::new();
//!
//! // insert returns true for new elements, false for duplicates.
//! assert!(set.insert(30));
//! assert!(set.insert(10));
//! assert!(set.insert(20));
//! assert!(!set.insert(10)); // duplicate; no-op
//!
//! assert_eq!(set.len(), 3);
//! assert_eq!(set.first(), Some(&10));
//!
//! // Iteration is in sorted order.
//! let values: Vec<_> = set.iter().copied().collect();
//! assert_eq!(values, [10, 20, 30]);
//!
//! // Set operations.
//! let other: SkipSet<i32> = [20, 30, 40].into_iter().collect();
//! let union: Vec<_> = set.union(&other).copied().collect();
//! assert_eq!(union, [10, 20, 30, 40]);
//! ```
//!
//! [`OrderedSkipList`]: crate::OrderedSkipList
//! [`Comparator<T>`]: crate::comparator::Comparator
//! [`new`]: SkipSet::new
//! [`with_level_generator`]: SkipSet::with_level_generator
//! [`with_comparator`]: SkipSet::with_comparator
//! [`with_comparator_and_level_generator`]: SkipSet::with_comparator_and_level_generator
//! [`contains`]: SkipSet::contains
//! [`get`]: SkipSet::get
//! [`get_by_index`]: SkipSet::get_by_index
//! [`first`]: SkipSet::first
//! [`last`]: SkipSet::last
//! [`rank`]: SkipSet::rank
//! [`insert`]: SkipSet::insert
//! [`replace`]: SkipSet::replace
//! [`get_or_insert`]: SkipSet::get_or_insert
//! [`get_or_insert_with`]: SkipSet::get_or_insert_with
//! [`remove`]: SkipSet::remove
//! [`take`]: SkipSet::take
//! [`pop_first`]: SkipSet::pop_first
//! [`pop_last`]: SkipSet::pop_last
//! [`retain`]: SkipSet::retain
//! [`drain`]: SkipSet::drain
//! [`extract_if`]: SkipSet::extract_if
//! [`union`]: SkipSet::union
//! [`intersection`]: SkipSet::intersection
//! [`difference`]: SkipSet::difference
//! [`symmetric_difference`]: SkipSet::symmetric_difference
//! [`is_subset`]: SkipSet::is_subset
//! [`is_superset`]: SkipSet::is_superset
//! [`is_disjoint`]: SkipSet::is_disjoint
//! [`len`]: SkipSet::len
//! [`is_empty`]: SkipSet::is_empty
//! [`clear`]: SkipSet::clear
//! [`split_off`]: SkipSet::split_off
//! [`split_off_index`]: SkipSet::split_off_index
//! [`append`]: SkipSet::append
//! [`iter`]: SkipSet::iter
//! [`into_iter`]: SkipSet::into_iter
use crate::;
pub use ;
pub use ;
pub use ;
/// An ordered set that stores each element at most once.
///
/// `SkipSet<T, N, C, G>` keeps its elements sorted according to the total
/// order defined by `C: Comparator<T>` and rejects duplicates (elements
/// comparing `Equal`). Insert, lookup, and remove are `$O(\log n)$` on average.
///
/// The const generic `N` (default `16`) sets the maximum number of levels
/// used internally; increase it when you expect more than roughly `$2^N$`
/// elements. `G` controls how levels are chosen for new elements; the
/// default ([`Geometric`]) works well in practice.
///
/// # Constructors
///
/// | Constructor | `T: Ord`? | Comparator | Generator |
/// |-----------------------------------------------|:---------:|:-----------------:|:---------------:|
/// | [`new()`] | required | [`OrdComparator`] | [`Geometric`] |
/// | [`with_level_generator(g)`] | required | [`OrdComparator`] | `g` |
/// | [`with_comparator(c)`] | not req. | `c` | [`Geometric`] |
/// | [`with_comparator_and_level_generator(c, g)`] | not req. | `c` | `g` |
///
/// [`new()`]: SkipSet::new
/// [`with_level_generator(g)`]: SkipSet::with_level_generator
/// [`with_comparator(c)`]: SkipSet::with_comparator
/// [`with_comparator_and_level_generator(c, g)`]: SkipSet::with_comparator_and_level_generator
///
/// # Examples
///
/// ```rust
/// use skiplist::skip_set::SkipSet;
///
/// let set = SkipSet::<u32>::new();
/// assert!(set.is_empty());
/// ```
// MARK: Constructors (OrdComparator, default level generator)
// MARK: Constructors (OrdComparator, custom level generator)
// MARK: Constructors (custom comparator, default level generator)
// MARK: Generic methods available for any C + G
// MARK: Default