BinarySearchTrees
Java binary search trees implementations and tests: AVL Tree, Red black tree, Scapegoat tree, Splay tree, Treap
File Explorer
Download Latest Version (.zip)- LinkedList.java
- PriorityQueue.java
- Queue.java
- Stack.java
- TreesDeleteBenchmark.java
- TreesInsertRandomBenchmark.java
- TreesInsertSortedBenchmark.java
- TreesSearchBenchmark.java
- TreesSearchSameElementsBenchmark.java
- QueueOverflowException.java
- Main.java
- ArrayUtils.java
- HeapUtils.java
- MathUtils.java
- AbstractBinarySearchTree.java
- AbstractSelfBalancingBinarySearchTree.java
- AVLTree.java
- BinarySearchTree.java
- RedBlackTree.java
- ScapegoatTree.java
- SplayTree.java
- Treap.java
- LinkedListTest.java
- PriorityQueueTest.java
- QueueTest.java
- StackTest.java
- ArrayUtilsTest.java
- HeapUtilsTest.java
- MathUtilsTest.java
- AVLTreeTest.java
- BaseBSTTest.java
- BinarySearchTreeTest.java
- RedBlackTreeTest.java
- ScapegoatTreeTest.java
- SplayTreeTest.java
- TreapTest.java
- .gitignore
- pom.xml
- .gitignore
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/ignl/BinarySearchTrees
Downloads the entire project code from GitHub to your computer.
cd BinarySearchTrees
Moves into the project folder you just downloaded.
2. Maven (Java)
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java projects.
- Maven The build tool used for the mvn command.
cd Trees
This project's files live in a subfolder, so move into it first.
mvn clean install
Installs dependencies and builds the project using Maven.
A BUILD SUCCESS message means it worked. The output is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
