Sunday, November 24, 2013

Sorting big-Oh for lab 9(Week 11)


Nearly-sorted input

Reverse-sort input

                                                              Randomized input

During our lab9, we did some analyses on sorting. There were 6 sorting methods we discussed. Selection, Insertion, Bubble, Merge , Quicksort, list.sort. We found the average case for Bubble, Insertion and Selection are O(n^2), Merge and quicksort are O(nlogn), list.sort is O(n). In the end, we found list.sort is the most stable in six sorting methods. The 3 graphs above are their runtime trends. The 3 tables below are their runtime details.
Random100200300400500600
Selection0.001750.004480.0100120.017940.0281370.043832
Insertion (1)0.0014570.0059640.0127460.0221360.0347370.0538
Bubble (1)0.0023440.0095870.0211570.0368210.0607120.090284
Merge (1)0.0007480.0016840.002780.003650.0046750.00582
Quicksort (1)0.0005280.0012120.0020210.0025370.0031760.004041
list.sort0.0000260.000060.0000980.0001380.0001810.000222
Sorted100200300400500600
Selection0.0014510.0045070.009840.0177340.027510.039828
Insertion (1)0.0000920.0001090.0003020.0004030.0004910.000602
Bubble (1)0.0013080.0050930.0113870.0202540.0317840.046298
Merge (1)0.0005720.0012170.0019440.0026370.0033720.004105
Quicksort (1)0.0009110.0027440.0045960.0068780.0095580.012427
list.sort0.0000270.000060.00010.0001390.0001830.000227
Sorted, reversed100200300400500600
Selection0.0018820.0046830.0104070.0185290.0293470.041515
Insertion (1)0.0028780.0111510.0248150.0443620.0690450.10773
Bubble (1)0.0034780.0136830.0306880.0544370.0873640.129299
Merge (1)0.006450.0013990.0021830.0029650.0036520.004605
Quicksort (1)0.0018410.0068830.0150720.0265610.0414320.059968
list.sort0.0000260.000620.00010.0001410.0001830.000224
 

1 comment: