2
2
#![ warn( missing_docs) ]
3
3
//! A simple and generic implementation of an immutable interval tree.
4
4
5
- #[ cfg( feature = "std" ) ]
6
- extern crate std;
7
5
#[ cfg( not( feature = "std" ) ) ]
8
6
extern crate alloc;
7
+ #[ cfg( feature = "serde" ) ]
8
+ extern crate serde;
9
+ #[ cfg( feature = "std" ) ]
10
+ extern crate std;
9
11
10
- use core:: ops:: Range ;
11
- use core:: iter:: FromIterator ;
12
+ #[ cfg( not( feature = "std" ) ) ]
13
+ use alloc:: vec:: { IntoIter , Vec } ;
14
+ use core:: cmp;
12
15
use core:: fmt:: { Debug , Formatter , Result as FmtResult } ;
16
+ use core:: iter:: FromIterator ;
17
+ use core:: ops:: Range ;
13
18
use core:: slice:: Iter ;
14
- use core:: cmp;
15
- #[ cfg( feature = "std" ) ]
16
- use std:: vec:: { Vec , IntoIter } ;
17
- #[ cfg( not( feature = "std" ) ) ]
18
- use alloc:: vec:: { Vec , IntoIter } ;
19
+ #[ cfg( feature = "serde" ) ]
20
+ use serde:: { Deserialize , Serialize } ;
19
21
use smallvec:: SmallVec ;
22
+ #[ cfg( feature = "std" ) ]
23
+ use std:: vec:: { IntoIter , Vec } ;
20
24
21
25
/// An element of an interval tree.
22
26
#[ derive( Debug , Clone , PartialEq , Eq , Hash ) ]
27
+ #[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
23
28
pub struct Element < K , V > {
24
29
/// The range associated with this element.
25
30
pub range : Range < K > ,
@@ -35,7 +40,8 @@ impl<K, V> From<(Range<K>, V)> for Element<K, V> {
35
40
}
36
41
37
42
#[ derive( Clone , Debug , Hash ) ]
38
- struct Node < K , V > {
43
+ #[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
44
+ struct Node < K , V > {
39
45
element : Element < K , V > ,
40
46
max : K ,
41
47
}
@@ -45,6 +51,7 @@ struct Node<K, V>{
45
51
/// To build it, always use `FromIterator`. This is not very optimized
46
52
/// as it takes `O(log n)` stack (it uses recursion) but runs in `O(n log n)`.
47
53
#[ derive( Clone , Debug , Hash ) ]
54
+ #[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
48
55
pub struct IntervalTree < K , V > {
49
56
data : Vec < Node < K , V > > ,
50
57
}
0 commit comments