We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62b011d commit c99db23Copy full SHA for c99db23
README.md
@@ -17,6 +17,7 @@ It provides 4 different trees implementations.
17
* **N-ary node**: (or K-ary tree) extends the base class and allows you to specify the capacity of a node, the maximum children a node can have.
18
* **Value node**: extends the N-ary node and allows you to attach a value to the node.
19
* **KeyValue node**: extends the Value node and allows you to attach a key and a value to the node.
20
+* **Trie node**: extends the KeyValue node, a simple [Trie tree](https://en.wikipedia.org/wiki/Trie).
21
22
It also provides [4 trees traversals algorithm](https://en.wikipedia.org/wiki/Tree_traversal):
23
* In order
0 commit comments