Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 530 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 530 Bytes

Counting Sort (stable version)

C++ implementation of the Counting Sort algorithm (stable version, meaning it keeps the given order for equal numbers).

I've included execution time measurement in the code, thus the program outputs its execution time (excluding the time it needs to generate and allocate the arrays).


Sample output with 1000000 randomly generated values

image