File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
13
13
A PHP implementation of tree data structure.
14
14
15
- This library provides 4 different trees implementations.
16
- * ** Node** : The base class
15
+ It provides 4 different trees implementations.
16
+ * ** Node** : The base class.
17
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
18
* ** Value node** : extends the N-ary node and allows you to attach a value to the node.
19
19
* ** KeyValue node** : extends the Value node and allows you to attach a key and a value to the node.
20
20
21
- This library provides [ 4 trees traversals algorithm] ( https://en.wikipedia.org/wiki/Tree_traversal ) that works for most types of trees.
22
- * In order:
21
+ It also provides [ 4 trees traversals algorithm] ( https://en.wikipedia.org/wiki/Tree_traversal ) :
22
+ * In order
23
23
* Post order
24
24
* Pre order
25
25
* Breadth first
26
26
27
- This library also provides 1 converter for the [ graphp/graphp] ( https://github.com/graphp/graph ) library.
27
+ And it provides 1 converter for the [ graphp/graphp] ( https://github.com/graphp/graph ) library.
28
28
29
29
## Documentation
30
30
You can’t perform that action at this time.
0 commit comments