Empirically comparing the time complexities of Selection Sort and Quicksort

Test the sorting algorithms on randomly generated lists of integers of different sizes

Result

The number of ops between comparison and swap

Comparing comparison ops

Comparing swap ops

Quicksort performs more swap operations than selection sort.