码迷,mamicode.com
首页 > 其他好文 > 详细

comparison algorithm of sort

时间:2014-10-16 15:17:12      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   sp   div   on   cti   log   

 

    /*Comparison sort
     * 
     |---------------------|-----|----------------|---------------|------|----------|
     |       Name          |Best | Average        |Worst          |Memory|Stable?   |
     |---------------------|-----|----------------|---------------|------|----------|
     |1 Insertion sort     |     |                |               |      |          |
     |---------------------|-----|----------------|---------------|------|----------|
     |   1.1 Insertion sort|n    | n*n            |n*n            |1     |stable    | 
     |   1.2 Shell sort    |n    | n*(logn)*(logn)|n*(logn)*(logn)|1     |not table |
     |---------------------|-----|----------------|---------------|------|----------|
     |2 Exchange sort      |     |                |               |      |          |
     |---------------------|-----|----------------|---------------|------|----------|
     |   2.1 Quick sort    |nlogn| nlogn          |n*n            |logn  |not stable|
     |   2.2 Bubble sort   |n    | n*n            |n*n            |1     |stable    |
     |   2.3 Cocktail sort |n    | n*n            |n*n            |1     |stable    |
     |   2.4 Odd-Even sort |n    | n*n            |n*n            |1     |not sable |
     |---------------------|-----|----------------|---------------|------|----------|
     |3 Selection sort     |     |                |               |      |          |
     |---------------------|-----|----------------|---------------|------|----------|
     |   3.1 Selection sort|n*n  | n*n            |n*n            |1     |not stable|
     |   3.2 Heapsort      |nlogn| nlogn          |nlogn          |1     |not stable|
     |---------------------|-----|----------------|---------------|------|----------|
     |4 Merge sort         |     |                |               |      |          |
     |---------------------|-----|----------------|---------------|------|----------|
     |   4.1 merge sort    |n    | nlogn          |nlogn          |n     |stable    |
     |---------------------|-----|----------------|---------------|------|----------|
     |5 Hybrid sort        |     |                |               |      |          |
     |---------------------|-----|----------------|---------------|------|----------|
     |   5.1 hybrid sort   |nlogn| nlogn          |nlogn          |nlogn |not stable|
     |---------------------|-----|----------------|---------------|------|----------|
     * 
     */

 

  

comparison algorithm of sort 

 

comparison algorithm of sort

标签:style   blog   io   ar   sp   div   on   cti   log   

原文地址:http://www.cnblogs.com/HaifengCai/p/4028588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!