1
- // @dart=2.9
2
1
/// Trie is an ordered tree data structure used to store a dynamic set
3
2
/// or associative array where the keys are usually strings.
4
3
class Trie <V extends Comparable > {
5
4
/// Root of the trie.
6
- TrieNode root;
5
+ TrieNode ? root;
7
6
8
7
/// Separates the value into it's components.
9
8
final Function splitter;
10
9
11
10
List _components;
12
11
13
12
/// Initialises trie with custom set of values.
14
- Trie (Set components, this .splitter) {
15
- _components = [...components];
16
- }
13
+ Trie (Set components, this .splitter) : _components = [...components];
17
14
18
15
/// Generates trie of lower-case alphabets.
19
16
Trie .ofAlphabets ()
@@ -28,22 +25,22 @@ class Trie<V extends Comparable> {
28
25
29
26
/// Adds a [value] to the trie.
30
27
void add (V value) {
31
- var list = _split (value);
28
+ var list = _split (value) as List < V > ;
32
29
if (isEmpty) {
33
30
root ?? = TrieNode ({..._components});
34
31
}
35
- _add (root, list);
32
+ _add (root! , list);
36
33
}
37
34
38
35
/// Checks if [value] is contained in the trie.
39
36
bool contains (V value) {
40
- var list = _split (value);
41
- return isEmpty ? false : _contains (root, list);
37
+ var list = _split (value) as List < V > ;
38
+ return isEmpty ? false : _contains (root! , list);
42
39
}
43
40
44
41
/// Deletes [value] from the trie.
45
42
void delete (V value) {
46
- var list = _split (value);
43
+ var list = _split (value) as List < V > ;
47
44
var returnValue = _delete (root, list);
48
45
returnValue ?? nullify ();
49
46
}
@@ -61,11 +58,11 @@ class Trie<V extends Comparable> {
61
58
var path = _indexOf (value.first);
62
59
value = value.sublist (1 );
63
60
64
- if (node.children[path] == null ) {
65
- node.children[path] = TrieNode (components);
61
+ if (node.children! [path] == null ) {
62
+ node.children! [path] = TrieNode (components);
66
63
}
67
64
68
- _add (node.children[path], value);
65
+ _add (node.children! [path]! , value);
69
66
}
70
67
71
68
bool _contains (TrieNode node, List <V > value) {
@@ -75,8 +72,8 @@ class Trie<V extends Comparable> {
75
72
var path = _indexOf (value.first);
76
73
value = value.sublist (1 );
77
74
78
- if (node.children[path] != null ) {
79
- return _contains (node.children[path], value);
75
+ if (node.children! [path] != null ) {
76
+ return _contains (node.children! [path]! , value);
80
77
} else {
81
78
return false ;
82
79
}
@@ -85,7 +82,7 @@ class Trie<V extends Comparable> {
85
82
/// Traverses the path following [value] and marks
86
83
/// `node.isValue` to `false` at end. Deletes values eagerly i.e.
87
84
/// cleans up any parent nodes that are no longer necessary.
88
- TrieNode _delete (TrieNode node, List <V > value) {
85
+ TrieNode ? _delete (TrieNode ? node, List <V > value) {
89
86
if (value.isEmpty) {
90
87
// In case trie is empty and an empty value is passed.
91
88
if (node == null ) return null ;
@@ -94,7 +91,7 @@ class Trie<V extends Comparable> {
94
91
95
92
// Checks all the children. If null, then deletes the node.
96
93
var allNull = true ;
97
- for (var child in node.children) {
94
+ for (var child in node.children! ) {
98
95
if (child != null ) {
99
96
allNull = false ;
100
97
break ;
@@ -110,16 +107,16 @@ class Trie<V extends Comparable> {
110
107
value = value.sublist (1 );
111
108
112
109
// Path to value doesn't exist.
113
- if (node.children[path] == null ) {
110
+ if (node.children! [path] == null ) {
114
111
return node;
115
112
}
116
113
117
- node.children[path] = _delete (node.children[path], value);
114
+ node.children! [path] = _delete (node.children! [path]! , value);
118
115
119
116
// Delete node if all children are null.
120
- if (node.children[path] == null ) {
117
+ if (node.children! [path] == null ) {
121
118
var allNull = true ;
122
- for (var child in node.children) {
119
+ for (var child in node.children! ) {
123
120
if (child != null ) {
124
121
allNull = false ;
125
122
break ;
@@ -150,11 +147,10 @@ class TrieNode<V extends Comparable> {
150
147
bool isValue = false ;
151
148
152
149
/// Connection to [children] .
153
- List <TrieNode > children;
150
+ List <TrieNode ?> ? children;
154
151
155
152
/// Initializes the node to have as many [children]
156
153
/// as there are components in the trie.
157
- TrieNode (Set components) {
158
- children = List <TrieNode >(components.length);
159
- }
154
+ TrieNode (Set components)
155
+ : children = List <TrieNode ?>.filled (components.length, null );
160
156
}
0 commit comments