当前位置:   article > 正文

数据结构 冒泡排序(BubbleSort) 详解 附C++代码实现:_数据结构冒泡排序算法代码

数据结构冒泡排序算法代码

目录

冒泡简介:

算法描述:

代码实现:

总结一下:


冒泡简介:

如果你是小白,我告诉你,冒泡很简单。

冒泡是比较类排序算法,时间复杂度最好、最坏、平均都是o(n^2),通过一次次比较找到一个最大或最小的数,确定该数在数组中的位置,就相当于一个筛子,一次捞出一个最值。

算法描述:

 

  • 比较相邻的元素。如果第一个比第二个大,就交换它们两个;
  • 对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对,这样在最后的元素应该会是最大的数;
  • 针对所有的元素重复以上的步骤,除了最后一个;
  • 重复步骤1~3,直到排序完成。

代码实现:

  1. #include<iostream>
  2. #include<stdio.h>
  3. #include<time.h>
  4. #include<stdlib.h>
  5. using namespace std;
  6. #define range 10000
  7. void myrandom(int a[],int len)
  8. {
  9. srand((unsigned) time(NULL));
  10. for(int i=0;i<len;i++)
  11. {
  12. a[i]=rand()%range+1;
  13. }
  14. }
  15. void BubbleSort(int a[],int n) // 冒泡排序
  16. {
  17. int i=0;
  18. int j=0;
  19. int len=n;
  20. int temp=0;
  21. for(i=0;i<len-1;i++)
  22. {
  23. for(j=0;j<len-i-1;j++)
  24. {
  25. if(a[j]>a[j+1])
  26. {
  27. temp=a[j];
  28. a[j]=a[j+1];
  29. a[j+1]=temp;
  30. }
  31. }
  32. }
  33. }
  34. int main()
  35. {
  36. freopen("out.txt","w",stdout);
  37. clock_t start,end;
  38. start=clock();
  39. int arr[range];
  40. int n=range;
  41. myrandom(arr,n);
  42. cout<<"冒泡排序前:"<<endl;
  43. for(int i=0;i<n;i++)
  44. {
  45. printf("%6d ",arr[i]);
  46. if((i+1)%50==0)
  47. cout<<endl;
  48. }
  49. BubbleSort(arr,n);
  50. cout<<endl<<"冒泡排序后:"<<endl;
  51. for(int i=0;i<n;i++)
  52. {
  53. printf("%6d ",arr[i]);
  54. if((i+1)%50==0)
  55. cout<<endl;
  56. }
  57. end=clock();
  58. cout<<endl;
  59. cout<<"程序运行了(方法二):"<<(float)(end-start)*1000.0/CLOCKS_PER_SEC<<"ms"<<endl;
  60. return 0;
  61. }

有图有真相:

 

 

总结一下:

再强调一下:比较类排序算法,时间复杂度最好、最坏、平均都是o(n^2),稳定的算法

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/824489
推荐阅读
相关标签
  

闽ICP备14008679号