--------------------------------------------------------------- Ima Goetting Closeau CPSC 427/527 Mon Apr 18 2016 15:26:54 --------------------------------------------------------------- Sorting Tests on a List of 10000000 random 31-bit numbers Test 1: Sorting array using std::sort() Set up time: 0.015210 seconds Sort time: 1.003322 seconds Result: [37...2147483025] Cleanup time: 0.002038 seconds Test 2: Sorting array using Alice's quicksort Set up time: 0.014921 seconds Sort time: 0.951405 seconds Result: [37...2147483025] Cleanup time: 0.002077 seconds Test 3: Sorting a Vector using std::sort() Set up time: 0.015121 seconds Sort time: 1.018212 seconds Result: [37...2147483025] Cleanup time: 0.002027 seconds Test 4: Sorting an array using radix sort Set up time: 0.398044 seconds Sort time: 2.712101 seconds Result: [37...2147483025] Cleanup time: 0.943529 seconds --------------------------------------------------------------- Normal termination.