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
pub mod tree;
pub use self::tree::Tree;
pub mod forest;
pub use self::forest::Forest;
pub mod node;
pub use self::node::{Node,MovedNodes,NullIndex};
pub mod pot;
pub use self::pot::Pot;
pub mod iter;
pub use self::iter::{Iter,IterMut};
pub mod notation;
pub use self::notation::{TreeData,TupleTree,TupleForest,fr};
pub use super::bfs;
pub use super::Size;
use rust::*;
const NULL : usize = 0;
const ROOT : usize = 1;
const TREE : u32 = 0;
const FOREST : u32 = !0;
fn tree_null<T>() -> Node<T> {
Node {
next : NULL as u32,
child : u32::null(),
prev : NULL as u32,
parent : u32::null(),
size : Size{ degree: 0, node_cnt: 0 },
adjoined : TREE,
index : NULL as u32,
data : unsafe{ mem::uninitialized() },
}
}
fn forest_null<T>() -> Node<T> {
Node {
next : NULL as u32,
child : u32::null(),
prev : NULL as u32,
parent : u32::null(),
size : Size{ degree: 0, node_cnt: 0 },
adjoined : FOREST,
index : NULL as u32,
data : unsafe{ mem::uninitialized() },
}
}
fn fake_root <T>() -> Node<T> {
Node {
next : ROOT as u32,
child : u32::null(),
prev : ROOT as u32,
parent : u32::null(),
size : Size{ degree: 0, node_cnt: 0 },
adjoined : 0,
index : ROOT as u32,
data : unsafe{ mem::uninitialized() },
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test] fn test_tree_to_string() {
fn tree_to_string<'a, T:Display>( node: &'a Node<T> ) -> String {
if node.is_leaf() {
node.data.to_string()
} else {
format!( "{}( {})", node.data,
node.iter().fold( String::new(),
|s,c| s + &tree_to_string(c) + &" " ))
}
}
let tree: Tree<_> = ( "0", ( "1","2","3" ), ( "4","5","6" ) ).into();
assert_eq!( tree_to_string( tree.root() ), "0( 1( 2 3 ) 4( 5 6 ) )" );
}
#[test] fn test_crud() {
let mut tree: Tree<_> = ( "0", ).into();
assert_eq!( tree.root().to_string(), "0" );
tree.root_mut().append_tr(( "1", ));
assert_eq!( tree.root().to_string(), "0( 1 )" );
tree.root_mut().append_tr(( "2", "3" ));
assert_eq!( tree.root().to_string(), "0( 1 2( 3 ) )" );
tree.root_mut().data = "_";
assert_eq!( tree.root().to_string(), "_( 1 2( 3 ) )" );
tree.root_mut().append_tr(( "4", ));
assert_eq!( tree.root().to_string(), "_( 1 2( 3 ) 4 )" );
assert_eq!( tree.pot().nth_child( 1, 0 ).unwrap(), 2 );
assert_eq!( tree.pot().nth_child( 1, 1 ).unwrap(), 3 );
assert_eq!( tree.pot().nth_child( 1, 2 ).unwrap(), 5 );
assert_eq!( tree.pot().nth_child( 1, 3 ), None );
tree.root_mut().nth_child_mut(1).unwrap().drop_back();
assert_eq!( tree.root().to_string(), "_( 1 2 4 )" );
tree.root_mut().drop_back();
assert_eq!( tree.root().to_string(), "_( 1 2 )" );
tree.root_mut().drop_back();
assert_eq!( tree.root().to_string(), "_( 1 )" );
tree.root_mut().drop_back();
assert_eq!( tree.root().to_string(), "_" );
}
#[test]
fn test_grow() {
let mut tree: Tree<_> = ( 0, 1, 2 ).into();
{
let mut iter = tree.iter_mut();
let first = iter.next().unwrap();
let second = iter.next().unwrap();
second.append_fr(( fr(), 3, 4, 5, 6, 7 ));
first.append_fr(( fr(), 8, 9 ));
}
let expected: Tree<_> = ( 0, (1,8,9), (2,3,4,5,6,7,) ).into();
assert_eq!( tree, expected );
}
}