An open API service indexing awesome lists of open source software.

https://github.com/tomarakanksha/sorting-algorithms

Implementation of Insertion Sort, Merge Sort, and Quick Sort.
https://github.com/tomarakanksha/sorting-algorithms

Last synced: 2 months ago
JSON representation

Implementation of Insertion Sort, Merge Sort, and Quick Sort.

Awesome Lists containing this project

README

        

# This project consists of three Sortimg Algorithms
### Insertion Sort
### Merge Sort
### QuickSort

# How to run this project from Command Line:

## Prerequisites
* Have a JDK 17 installed

##
1. Go to the project folder and run the following command to compile the project
```
javac -d ./bin -cp ./bin ./src/*.java
```
2. After compiling the code run the following command to generate the output
```
java -classpath ./bin InsertionSort
java -classpath ./bin MergeSort
java -classpath ./bin QuickSort

```