Chinaunix首页 | 论坛 | 博客
  • 博客访问: 488723
  • 博文数量: 174
  • 博客积分: 130
  • 博客等级: 入伍新兵
  • 技术积分: 587
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-12 19:39
文章分类

全部博文(174)

文章存档

2018年(2)

2016年(10)

2015年(6)

2014年(31)

2013年(92)

2012年(33)

我的朋友

分类: C/C++

2014-06-07 22:02:35

排序是计算机算法中非常重要的一项,而排序算法又有不少实现方法,那么哪些排序算法比较有效率,哪些算法在特定场合比较有效,下面将用C++实现各种算法,并且比较他们的效率,让我们对各种排序有个更深入的了解。


冒泡排序

点击(此处)折叠或打开

  1. //n^2
  2. //冒泡排序V[n]不参与排序
  3. void BubbleSort (int V[], int n )
  4. {
  5.     bool exchange;     //设置交换标志置
  6.     for ( int i = 0; i < n; i++ ){
  7.         exchange=false;
  8.         for (int j=n-1; j>i; j--) { //反向检测,检查是否逆序
  9.             if (V[j-1] > V[j]) //发生逆序,交换相邻元素
  10.             {
  11.                 int temp=V[j-1];
  12.                 V[j-1]=V[j];
  13.                 V[j]=temp;
  14.                 exchange=true;//交换标志置位
  15.             }
  16.         }
  17.         
  18.         if (exchange == false)
  19.             return; //本趟无逆序,停止处理
  20.     }
  21. }


插入排序

点击(此处)折叠或打开

  1. //插入排序,L[begin],L[end]都参与排序
  2. void InsertionSort ( int L[], const int begin, const int end)
  3. {
  4.     //按关键码 Key 非递减顺序对表进行排序
  5.     int temp;
  6.     int i, j;
  7.     for ( i = begin; i < end; i++ )
  8.     {
  9.         if (L[i]>L[i+1])
  10.         {
  11.             temp = L[i+1];
  12.             j=i;
  13.             do
  14.             {
  15.                 L[j+1]=L[j];
  16.                 if(j == 0)
  17.                 {
  18.                     j--;
  19.                     break;
  20.                 }
  21.                 j--;
  22.                 
  23.             } while(temp<L[j]);
  24.             L[j+1]=temp;
  25.         }
  26.     }
  27. }


快速排序

点击(此处)折叠或打开

  1. //n*logn
  2. //快速排序A[startingsub],A[endingsub]都参与排序
  3. void QuickSort( int A[], int startingsub, int endingsub)
  4. {
  5.     if ( startingsub >= endingsub )
  6.         ;
  7.     else{
  8.         int partition;
  9.         int q = startingsub;
  10.         int p = endingsub;
  11.         int hold;
  12.         
  13.         do{
  14.             for(partition = q ; p > q ; p--){
  15.                 if( A[q] > A[p]){
  16.                     hold = A[q];
  17.                     A[q] = A[p];
  18.                     A[p] = hold;
  19.                     break;
  20.                 }
  21.             }
  22.             for(partition = p; p > q; q++){
  23.                 if(A[p] < A[q]){
  24.                     hold = A[q];
  25.                     A[q] = A[p];
  26.                     A[p] = hold;
  27.                     break;
  28.                 }
  29.             }
  30.             
  31.         }while( q < p );
  32.         QuickSort( A, startingsub, partition - 1 );
  33.         QuickSort( A, partition + 1, endingsub );
  34.     }
  35. }


希尔排序

点击(此处)折叠或打开

  1. //希尔排序,L[left],L[right]都参与排序
  2. void Shellsort( int L[], const int left, const int right)
  3. {
  4.     int i, j, gap=right-left+1; //增量的初始值
  5.     int temp;
  6.     do{
  7.         gap=gap/3+1; //求下一增量值
  8.         for(i=left+gap; i<=right; i++)
  9.             //各子序列交替处理
  10.             if( L[i]<L[i-gap]){ //逆序
  11.                 temp=L[i]; j=i-gap;
  12.                 do{
  13.                     L[j+gap]=L[j]; //后移元素
  14.                     j=j-gap; //再比较前一元素
  15.                 }while(j>left&&temp<L[j]);
  16.                 L[j+gap]=temp; //将vector[i]回送
  17.             }
  18.     }while(gap>1);
  19. }


计数排序

点击(此处)折叠或打开

  1. //n
  2. //计数排序,L[n]不参与排序
  3. void CountingSort( int L[], const int n )
  4. {
  5.     int i,j;
  6.     const int k =1001;
  7.     int tmp[k];
  8.     int *R;
  9.     R = new int[n];
  10.     for(i=0;i<k;i++) tmp[i]= 0;
  11.     for(j=0;j<n;j++) tmp[L[j]]++;
  12.     //执行完上面的循环后,tmp[i]的值是L中等于i的元素的个数
  13.     for(i=1;i<k;i++)
  14.         tmp[i]=tmp[i]+tmp[i-1]; //执行完上面的循环后,
  15.     //tmp[i]的值是L中小于等于i的元素的个数
  16.     for(j=n-1;j>=0;j--) //这里是逆向遍历,保证了排序的稳定性
  17.     {
  18.         
  19.         R[tmp[L[j]]-1] = L[j];
  20.         //L[j]存放在输出数组R的第tmp[L[j]]个位置上
  21.         tmp[L[j]]--;
  22.         //tmp[L[j]]表示L中剩余的元素中小于等于L[j]的元素的个数
  23.         
  24.     }
  25.     for(j=0;j<n;j++) L[j] = R[j];
  26. }

基数排序

点击(此处)折叠或打开

  1. //基数排序
  2. void printArray( const int Array[], const int arraySize );
  3. int getDigit(int num, int dig);
  4. const int radix=10; //基数
  5. void RadixSort(int L[], int left, int right, int d){
  6. //MSD排序算法的实现。从高位到低位对序列划分,实现排序。d是第几位数,d=1是最低位。left和right是待排序元素子序列的始端与尾端。
  7.    int i, j, count[radix], p1, p2;
  8.    int *auxArray;
  9.    int M = 5;
  10.    auxArray = new int[right-left+1];
  11.    if (d<=0) return; //位数处理完递归结束
  12.    if (right-left+1<M){//对于小序列可调用直接插入排序
  13.        InsertionSort(L,left,right); return;
  14.    }
  15. for (j=0; j<radix; j++) count[j]=0;
  16.    for (i=left; i<=right; i++) //统计各桶元素的存放位置
  17.        count[getDigit(L[i],d)]++;
  18.    for (j=1; j<radix; j++) //安排各桶元素的存放位置
  19.        count[j]=count[j]+count[j-1];
  20.    for (i=right; i>=left; i--){ //将待排序序列中的元素按位置分配到各个桶中,存于助数组auxArray中
  21.        j=getDigit(L[i],d); //取元素L[i]第d位的值
  22.        auxArray[count[j]-1]=L[i]; //按预先计算位置存放
  23.        count[j]--; //计数器减1
  24.    }
  25.    for (i=left, j=0; i<=right; i++, j++)    
  26.        L[i]=auxArray[j]; //从辅助数组顺序写入原数组
  27.    delete []auxArray;
  28.     for (j=0; j<radix; j++){ //按桶递归对d-1位处理
  29.        p1=count[j]+left; //取桶始端,相对位置,需要加上初值$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$
  30.        (j+1 <radix )?(p2=count[j+1]-1+left):(p2=right) ; //取桶尾端
  31.     //    delete []count;
  32.      if(p1<p2){
  33.        RadixSort(L, p1, p2, d-1); //对桶内元素进行基数排序
  34.      // printArray(L,10);
  35.      }
  36.    }
  37.  
  38. }
  39. int getDigit(int num, int dig)
  40. {
  41.     int myradix = 1;
  42. /*    for(int i = 1;i<dig;i++)
  43.     {
  44.     myradix *= radix;
  45.     }*/
  46.     switch(dig)
  47.     {
  48.     case 1:
  49.         myradix = 1;
  50.         break;
  51. case 2:
  52.         myradix = 10;
  53.         break;
  54. case 3:
  55.         myradix = 1000;
  56.         break;
  57. case 4:
  58.         myradix = 10000;
  59.         break;
  60. default:
  61.         myradix = 1;
  62.         break;
  63.     }
  64.     return (num/myradix)%radix;
  65. }


minheap.h

点击(此处)折叠或打开

  1. //使用时注意将关键码加入
  2. #ifndef MINHEAP_H
  3. #define MINHEAP_H
  4. #include <assert.h>
  5. #include <iostream>
  6. using std::cout;
  7. using std::cin;
  8. using std::endl;
  9. using std::cerr;
  10. #include <stdlib.h>
  11. //const int maxPQSize = 50;
  12. template <class Type> class MinHeap {
  13. public:
  14.     MinHeap ( int maxSize );//根据最大长度建堆
  15.     MinHeap ( Type arr[], int n );//根据数组arr[]建堆
  16.     ~MinHeap ( ) { delete [] heap; }
  17.     const MinHeap<Type> & operator = ( const MinHeap &R );//重载赋值运算符
  18.     int Insert ( const Type &x );//插入元素
  19.     int RemoveMin ( Type &x );//移除关键码最小的元素,并赋给x
  20.     int IsEmpty ( ) const { return CurrentSize == 0; }//检查堆是否为空
  21.     int IsFull ( ) const { return CurrentSize == MaxHeapSize; }//检查对是否满
  22.     void MakeEmpty ( ) { CurrentSize = 0; }//使堆空
  23. private:
  24.     enum { DefaultSize = 50 };//默认堆的大小
  25.     Type *heap;
  26.     int CurrentSize;
  27.     int MaxHeapSize;
  28.     void FilterDown ( int i, int m );//自上向下调整堆
  29.     void FilterUp ( int i );//自下向上调整堆
  30. };
  31. template <class Type> MinHeap <Type>::MinHeap ( int maxSize )
  32. {
  33.     //根据给定大小maxSize,建立堆对象
  34.     MaxHeapSize = (DefaultSize < maxSize ) ? maxSize : DefaultSize;     //确定堆大小
  35.     heap = new Type [MaxHeapSize]; //创建堆空间
  36.     CurrentSize = 0; //初始化
  37. }
  38. template <class Type> MinHeap <Type>::MinHeap ( Type arr[], int n )
  39. {
  40.     //根据给定数组中的数据和大小,建立堆对象
  41.     MaxHeapSize = DefaultSize < n ? n : DefaultSize;
  42.     heap = new Type [MaxHeapSize];
  43.     if(heap==NULL){cerr <<"fail" <<endl;exit(1);}
  44.     for(int i =0; i< n; i++)
  45.         heap[i] = arr[i]; //数组传送
  46.     CurrentSize = n; //当前堆大小
  47.     int currentPos = (CurrentSize-2)/2; //最后非叶
  48.     while ( currentPos >= 0 ) {
  49.         //从下到上逐步扩大,形成堆
  50.         FilterDown ( currentPos, CurrentSize-1 );
  51.         currentPos-- ;
  52.         //从currentPos开始,到0为止, 调整currentPos--; }
  53.     }
  54. }
  55. template <class Type> void MinHeap<Type>::FilterDown ( const int start, const int EndOfHeap )
  56. {
  57.     // 结点i的左、右子树均为堆,调整结点i
  58.     int i = start, j = 2*i+1; // j 是 i 的左子女
  59.     Type temp = heap[i];
  60.     while ( j <= EndOfHeap ) {
  61.         if ( j < EndOfHeap && heap[j] > heap[j+1] )
  62.             j++;//两子女中选小者
  63.         if ( temp<= heap[j] ) break;
  64.         else { heap[i] = heap[j]; i = j; j = 2*j+1; }
  65.     }
  66.     heap[i] = temp;
  67. }
  68. template <class Type> int MinHeap<Type>::Insert ( const Type &x )
  69. {
  70.     //在堆中插入新元素 x
  71.     if ( CurrentSize == MaxHeapSize ) //堆满
  72.     {
  73.         cout << "堆已满" << endl; return 0;
  74.     }
  75.     heap[CurrentSize] = x; //插在表尾
  76.     FilterUp (CurrentSize); //向上调整为堆
  77.     CurrentSize++; //堆元素增一
  78.     return 1;
  79. }
  80. template <class Type> void MinHeap<Type>::FilterUp ( int start )
  81. {
  82.     //从 start 开始,向上直到0,调整堆
  83.     int j = start, i = (j-1)/2; // i 是 j 的双亲
  84.     Type temp = heap[j];
  85.     while ( j > 0 ) {
  86.         if ( (heap[i].root->data.key )<= (temp.root->data.key) ) break;
  87.         else { heap[j] = heap[i]; j = i; i = (i -1)/2; }
  88.     }
  89.     heap[j] = temp;
  90. }
  91. template <class Type> int MinHeap <Type>::RemoveMin ( Type &x )
  92. {
  93.     if ( !CurrentSize )
  94.     {
  95.         cout << "堆已空 " << endl;
  96.         return 0;
  97.     }
  98.     x = heap[0]; //最小元素出队列
  99.     heap[0] = heap[CurrentSize-1];
  100.     CurrentSize--; //用最小元素填补
  101.     FilterDown ( 0, CurrentSize-1 );
  102.     //从0号位置开始自顶向下调整为堆
  103.     return 1;
  104. }    
  105. #endif

maintest.cpp

点击(此处)折叠或打开

  1. #include<iostream>
  2. using std::cout;
  3. using std::cin;
  4. using std::endl;
  5. #include <cstdlib>
  6. #include <ctime>
  7. #include<iostream>
  8. using std::cout;
  9. using std::cin;
  10. using std::ios;
  11. using std::cerr;
  12. using std::endl;
  13. #include<iomanip>
  14. using std::setw;
  15. using std::fixed;
  16. #include<fstream>
  17. using std::ifstream;
  18. using std::ofstream;
  19. using std::flush;
  20. #include<string>
  21. using std::string;
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <time.h>
  25. #include"minheap.h"
  26. void BubbleSort(int arr[], int size);//冒泡排序
  27. void QuickSort( int A[], int startingsub, int endingsub);//快速排序
  28. void InsertionSort ( int L[], const int begin,const int n);//插入排序
  29. void Shellsort( int L[], const int left, const int right);//希尔排序
  30. void CountingSort( int L[], const int n );//计数排序
  31. int getDigit(int num, int dig);//基数排序中获取第dig位的数字
  32. void RadixSort(int L[], int left, int right, int d);//基数排序
  33. void printArray( const int Array[], const int arraySize );//输出数组
  34. int main()
  35. {
  36.     clock_t start, finish;
  37.     double duration;
  38.     /* 测量一个事件持续的时间*/
  39.     ofstream *ofs;
  40.     string fileName = "sortResult.txt";
  41.     ofs = new ofstream(fileName.c_str(),ios::out|ios::app);
  42.     const int size = 100000;
  43.     int a[size];
  44.     int b[size];
  45.     srand(time(0));
  46.     ofs->close();
  47.     for(int i = 0; i < 20;i++)
  48.     {
  49.         ofs->open(fileName.c_str(),ios::out|ios::app);
  50.         if( ofs->fail()){
  51.                 cout<<"!!";
  52.                 ofs->close();
  53.         }
  54.         for(int k =0; k <size;k++)
  55.         {
  56.             a[k] = rand()%1000;
  57.             b[k] = a[k];
  58.             
  59.         }         
  60.         /*    for( k =0; k <size;k++)
  61.         {
  62.         a[k] = k;
  63.         b[k] = a[k];
  64.         
  65.     } */
  66.         //printArray(a,size);    
  67.         //计数排序
  68.         for( k =0; k <size;k++)
  69.         {
  70.             a[k] =     b[k];
  71.         }
  72.         start = clock();
  73.         CountingSort(a,size);
  74.         
  75.         finish = clock();
  76.         //    printArray(a,size);
  77.         
  78.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  79.         printf( "%s%f secondsn", "计数排序:",duration );
  80.         *ofs<<"第"<<i<<"次:n " <<"排序内容:0~999共" << size << " 个整数n" ;
  81.         *ofs<<"第"<<i<<"次计数排序:n " <<"        Time:    " <<fixed<< duration << " secondsn";
  82.         //基数排序
  83.         for( k =0; k <size;k++)
  84.         {
  85.             a[k] =     b[k];
  86.         }
  87.         start = clock();
  88.         RadixSort(a, 0,size-1, 3);
  89.         finish = clock();
  90.         //    printArray(a,size);
  91.         
  92.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  93.         printf( "%s%f secondsn", "基数排序:",duration );
  94.         *ofs<<"第"<<i<<"次基数排序:n " <<"        Time:    " << duration << " secondsn";
  95.         //堆排序
  96.         MinHeap<int> mhp(a,size);
  97.         start = clock();
  98.         for( k =0; k <size;k++)
  99.         {
  100.             mhp.RemoveMin(a[k]);
  101.         }
  102.         finish = clock();
  103.         //    printArray(a,size);
  104.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  105.         printf( "%s%f secondsn", "堆排序:",duration );
  106.         *ofs<<"第"<<i<<"次堆排序:n " <<"        Time:    " << duration << " secondsn";
  107.         //快速排序
  108.         for( k =0; k <size;k++)
  109.         {
  110.             a[k] =     b[k];
  111.             
  112.         }
  113.         //printArray(a,size);
  114.         start = clock();
  115.         QuickSort(a,0,size-1);
  116.         finish = clock();
  117.         //    printArray(a,size);
  118.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  119.         printf( "%s%f secondsn", "快速排序:",duration );
  120.         *ofs<<"第"<<i<<"次快速排序:n " <<"        Time:    " << duration << " secondsn";
  121.         //希尔排序
  122.         for( k =0; k <size;k++)
  123.         {
  124.             a[k] =     b[k];
  125.         }
  126.         start = clock();
  127.         Shellsort(a,0,size-1);
  128.         
  129.         finish = clock();
  130.         //    printArray(a,size);
  131.         
  132.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  133.         printf( "%s%f secondsn", "希尔排序:",duration );
  134.         *ofs<<"第"<<i<<"次希尔排序:n " <<"        Time:    " << duration << " secondsn";
  135.         
  136.         //插入排序
  137.         for( k =0; k <size;k++)
  138.         {
  139.             a[k] =     b[k];
  140.         }
  141.         start = clock();
  142.         InsertionSort (a,0,size-1);
  143.         finish = clock();
  144.         //    printArray(a,size);
  145.         
  146.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  147.         printf( "%s%f secondsn", "插入排序:",duration );
  148.         *ofs<<"第"<<i<<"次插入排序:n " <<"        Time:    " << duration << " secondsn";
  149.         //冒泡排序
  150.         for( k =0; k <size;k++)
  151.         {
  152.             a[k] =     b[k];
  153.         }
  154.         start = clock();
  155.         BubbleSort(a,size);
  156.         finish = clock();
  157.         //    printArray(a,size);
  158.         
  159.         duration = (double)(finish - start) / CLOCKS_PER_SEC;
  160.         printf( "%s%f secondsn", "冒泡排序:",duration );
  161.         *ofs<<"第"<<i<<"次冒泡排序:n " <<"        Time:    " << duration << " secondsn";
  162.         ofs->close();
  163.         }
  164.         return 0;
  165. }
  166. void printArray( const int Array[], const int arraySize )
  167. {
  168.     for( int i = 0; i < arraySize; i++ ) {
  169.         cout << Array[ i ] << " ";
  170.         if ( i % 20 == 19 )
  171.             cout << endl;
  172.     }
  173.     cout << endl;
  174. }


排序算法性能仿真:

排序内容:从0~999中随机产生,共100000 个整数,该表中单位为秒。

次数 计数排序 基数排序 堆排序 快速排序 希尔排序 直接插入排序 冒泡排序
1 0.0000 0.0310 0.0470 0.0470 0.0310 14.7970 58.0930
2 0.0000 0.0470 0.0310 0.0470 0.0470 16.2500 53.3280
3 0.0000 0.0310 0.0310 0.0310 0.0310 14.4850 62.4380
4 0.0000 0.0320 0.0320 0.0470 0.0310 17.1090 61.8440
5 0.0000 0.0310 0.0470 0.0470 0.0310 16.9380 62.3280
6 0.0000 0.0310 0.0310 0.0470 0.0310 16.9380 57.7030
7 0.0000 0.0310 0.0470 0.0310 0.0310 16.8750 61.9380
8 0.0150 0.0470 0.0310 0.0470 0.0320 17.3910 62.8600
9 0.0000 0.0320 0.0470 0.0460 0.0310 16.9530 62.2660
10 0.0000 0.0470 0.0310 0.0470 0.0310 17.0160 60.1410
11 0.0000 0.0930 0.0780 0.0320 0.0310 14.6090 54.6570
12 0.0000 0.0310 0.0320 0.0310 0.0310 15.0940 62.3430
13 0.0000 0.0310 0.0310 0.0470 0.0310 17.2340 61.9530
14 0.0000 0.0320 0.0470 0.0470 0.0310 16.9060 61.0620
15 0.0000 0.0320 0.0320 0.0460 0.0320 16.7810 62.5310
16 0.0000 0.0470 0.0470 0.0620 0.0310 17.2350 57.1720
17 0.0150 0.0160 0.0320 0.0470 0.0310 14.1400 52.0320
18 0.0150 0.0160 0.0310 0.0310 0.0310 14.1100 52.3590
19 0.0000 0.0310 0.0320 0.0460 0.0320 14.1090 51.8750
20 0.0000 0.0310 0.0320 0.0460 0.0320 14.0780 52.4840
21 0.0150 0.0780 0.0470 0.0470 0.0310 16.3750 59.5150
22 0.0000 0.0310 0.0310 0.0470 0.0320 16.8900 60.3440
23 0.0000 0.0310 0.0310 0.0310 0.0310 16.3440 60.0930
24 0.0000 0.0310 0.0310 0.0470 0.0310 16.3440 60.5780
25 0.0000 0.0320 0.0470 0.0470 0.0470 16.3590 59.7810
26 0.0160 0.0470 0.0310 0.0470 0.0310 16.1250 61.0620
27 0.0000 0.0310 0.0470 0.0470 0.0310 16.7810 59.6100
28 0.0150 0.0320 0.0320 0.0470 0.0310 16.9220 56.8130
29 0.0000 0.0310 0.0310 0.0310 0.0310 15.0790 57.8120
30 0.0000 0.0310 0.0320 0.0460 0.0320 14.7810 58.8280
31 0.0000 0.0310 0.0310 0.0470 0.0310 15.8590 59.1400
32 0.0000 0.0470 0.0320 0.0310 0.0310 16.0940 59.1560
33 0.0000 0.0470 0.0310 0.0310 0.0310 15.9850 59.1400
34 0.0000 0.0310 0.0310 0.0470 0.0320 16.0150 59.2500
35 0.0000 0.0310 0.0470 0.0470 0.0310 16.7660 57.9840
36 0.0000 0.0310 0.0320 0.0470 0.0310 15.3750 59.0470
37 0.0000 0.0320 0.0460 0.0470 0.0320 16.0310 58.9060
38 0.0000 0.0310 0.0310 0.0470 0.0310 15.9530 57.2650
39 0.0160 0.0310 0.0470 0.0470 0.0310 15.9530 57.5160
40 0.0150 0.0310 0.0320 0.0470 0.0310 14.7030 56.6710
平均值 0.0031 0.0360 0.0372 0.0437 0.0320 15.9946 58.7480
最小值 0.0000 0.0160 0.0310 0.0310 0.0310 14.0780 51.8750
最大值 0.0160 0.0930 0.0780 0.0620 0.0470 17.3910 62.8600

阅读(1614) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~