This Lib contains 3 binary search tree realisations:
- AVL tree
- Red-Black tree
- standart Binary Search tree
All the trees contains methods for:
- inserting element by key and value
- removing element by key
- finding element value by key
- iteration in ascending order of keys
Install TREE-BAMBOO Lib with github
git clone https://github.com/spbu-coding-2024/trees-bamboo-9.git
cd trees-bamboo-9/To run tests, run the following gradle command
./gradlew testor just build
./gradlew buildAfter that, the reports will appear in the folder lib/build:
- reports/tests/test/ with test success reports
- jacocoHTML/ with test coverage reports
Open index.html in them to see all the reports