冒泡排序较优解

Posted ITCoderW

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了冒泡排序较优解相关的知识,希望对你有一定的参考价值。

 1 #include <stdio.h>
 2 
 3 void swap(int *a,int *b);
 4 int main(int argc, const char * argv[]) {
 5     
 6     int a[6] = {1,6,8,1,6,8};
 7     int length = sizeof(a)/sizeof(a[0]);
 8     _Bool flag = 1;
 9     
10     for (int i=1; i<length && flag; i++) {
11         
12         flag = 0;
13         for (int j=length-1; j>=i; j--) {
14             if (a[j-1]>a[j]) {
15                 swap(&a[j-1], &a[j]);
16                 flag = 1;
17             }
18         }
19     }
20     
21     for (int i = 0; i<length; i++) {
22         printf("%d\t",a[i]);
23     }
24     printf("\n");
25     return 0;
26 }
27 
28 void swap(int *a,int *b){
29     int temp = *a;
30     *a = *b;
31     *b = temp;
32 }

 

以上是关于冒泡排序较优解的主要内容,如果未能解决你的问题,请参考以下文章

C语言冒泡排序法代码

请问这个冒泡排序代码,每一行都是啥意思呀,谢谢

java冒泡排序法代码

P1523 旅行商简化版

python代码实现鸡尾酒排序(双向冒泡排序)

冒泡排序python代码