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.
- Host: GitHub
- URL: https://github.com/tomarakanksha/sorting-algorithms
- Owner: tomarakanksha
- Created: 2023-01-27T22:55:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-27T22:59:16.000Z (over 2 years ago)
- Last Synced: 2025-02-05T07:23:39.519Z (4 months ago)
- Language: Java
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```