Skip to content

Commit c99db23

Browse files
committed
Update README.
1 parent 62b011d commit c99db23

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ It provides 4 different trees implementations.
1717
* **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.
1818
* **Value node**: extends the N-ary node and allows you to attach a value to the node.
1919
* **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).
2021

2122
It also provides [4 trees traversals algorithm](https://en.wikipedia.org/wiki/Tree_traversal):
2223
* In order

0 commit comments

Comments
 (0)