Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 463 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 463 Bytes

Sorting-Algorithms

Implementation of Sorting Algorithms in c++

In the directory where the runscript.py is, run the following command which will generate 100 numbers, which you can use to sort. Change this 100 by any number you want.

Before running uncomment the sorting algorithm you want to use in the main.

command to run: python runscript.py 100 data.txt

The implemented algorithms are:

  1. Selection Sort
  2. Insertion Sort
  3. Merge Sort
  4. Quick Sort