- Have a JDK 17 installed
- Go to the project folder and run the following command to compile the project
javac -d ./bin -cp ./bin ./src/*.java
- After compiling the code run the following command to generate the output
java -classpath ./bin InsertionSort
java -classpath ./bin MergeSort
java -classpath ./bin QuickSort