Here you can find simple sorting algorithms implementations using C language.
- Insertion Sort
- Selection Sort
- Merge Sort
- Quick Sort
- Heap Sort
- Counting Sort
- Radix Sort
- Ubuntu 17.04.
- GCC 6.3.0 or above.
To compile you have to simple type make on your console:
$ makeTo run, you have to envoke make and type the algorithm you want to run.
If you want to use the Insertion Sort algorithm:
$ make insertionIf you want to use the Selection Sort algorithm:
$ make selectionIf you want to use the Merge Sort algorithm:
$ make mergeIf you want to use the Quick Sort algorithm:
$ make quickIf you want to use the Heap Sort algorithm:
$ make heapIf you want to use the Counting Sort algorithm:
$ make countingIf you want to use the Radix Sort algorithm:
$ make radixPS: Use this algorithm only with "samples/text.txt".