Skip to content

Instantly share code, notes, and snippets.

View facug91's full-sized avatar

Facundo Galán facug91

View GitHub Profile
@facug91
facug91 / benchmark_comparison.csv
Last active January 6, 2024 22:02
Benchmark comparison of sorting algorithms in C++
Algorithm n=50000 Sorted asc n=50000 Sorted desc n=50000 random
Bubble Sort ~1160 ms ~1509 ms ~3177 ms
Selection Sort ~645 ms ~642 ms ~646 ms
Stable Selection Sort ~1159 ms ~1995 ms ~1915 ms
Insertion Sort ~0.052 ms ~1515 ms ~757 ms