TreeLib/README.md

19 lines
531 B
Markdown
Raw Permalink Normal View History

2021-05-02 17:31:03 +02:00
# TreeLib
Implementation of different kinds of trees in Java
Mainly used for us to learn different kinds of trees, but feel free to use these in your own projects
2021-05-02 19:09:28 +02:00
In light of statement above, we offer ABSOLUTELY NO WARRANTY in terms of (absence of) bugs, flawless execution and top-spec implementation of algorithms used.
2021-05-02 17:31:03 +02:00
2021-05-02 19:09:28 +02:00
Use at your own risk and feel free to debug/send bug reports/improve our code
2021-05-02 17:31:03 +02:00
# Trees currently supported:
2021-05-29 20:48:59 +02:00
- Binary Tree
2021-05-02 17:31:03 +02:00
# Trees to be added:
2021-05-02 19:08:22 +02:00
- 2-3 tree
- Red-Black tree
2021-05-29 20:48:59 +02:00
2021-05-02 19:08:22 +02:00
- Binary Search Tree
- AVL-tree