冒泡排序

《数据结构与算法C语言版》胡明 王红梅 编著 216页~217页 始终没有给出 关键码的定义。而且看书上的了第一插入排序代码就是错的,编者估计自己没有在真机上面运行。还有、、还有、、、


冒泡排序_第1张图片
DF26003A-89B3-4414-A8FC-D4D2D3F0855D.png

如果是对算法感兴趣:

冒泡排序_第2张图片
算法导论 第三版.png

暂且定义:
数组元素在移动时叫做记录。
数组元素在比较时叫做关键码。

CSDN http://blog.csdn.net/hguisu/article/details/7776068#comments 这位前辈做已经很好了,但是就是没有说如何计算关键码的比较次数compareCount和记录的移动次数moveCount?

冒泡排序思路:
每趟排序都是数组中的相邻两个元素在比较,

代码下载地址:
https://github.com/housenkui/BubbleSort

另外本文作者技术水平有限,欢迎大家批评指正!


#import 

//FIXME:这里N不能大于10^6,排序的元素过多,需要使用外排序
#define N 10
//这里传入数组的首地址 和数组的长度
void BubbleSort(long a[],long n){
   //升序排序
    long compareCount = 0;
    long moveCount    = 0;
    long temp  = 0;
    long j     = 0;
    long i = 0;
    
    
    for (; i < n-1; i++) {
        
        for (j = 0; j < n-i-1; j++) {
            
            compareCount++;
            
            if (a[j] > a[j+1]) {//关键码的比较    //数组中的值在比较,但是一般不这样叫,当数组中的值在比较时叫做关键码  YY? 书上就是这么叫的
                
                temp  = a[j+1];
                a[j+1]  = a[j];//记录的移动     //数组中的值在移动,但是一般不这样叫,当数组中的值在移动时叫做记录  YY?书上就是这么叫的
                a[j]  = temp;
                
                
                moveCount += 3;
                
            }
        }
        
    }
    
    unsigned  long sumCount = compareCount+moveCount;
    
    //实际值
    float  power  =  log2(sumCount)/log2(N);
    
    //当N = 10^1时 ,power =1.968483
    //当N = 10^2时 ,power =2.009225
    //当N = 10^3时 ,power =2.009586
    //当N = 10^4时 ,power =2.005717
    //当N = 10^5时 ,power =2.004560
    
    printf(" \n\n理论值 2  实际值%lf\n\n",power);
  }

main函数调用如下:

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        
        long Array[N] ={0};
        
        //生成随机的数组
        for (long i = 0; i < N; i++) {
            
            Array[i]  =arc4random()%N;
            
        }
        
        BubbleSort(Array,N);
        
        
    }
    return 0;
}

你可能感兴趣的:(冒泡排序)