请编程实现一个冒泡排序算法?

int [] array = new int ;

int temp = 0 ;

for (int i = 0 ; i < array.Length – 1 ; i++)

{

for (int j = i + 1 ; j < array.Length ; j++)

{

if (array[j] < array[i])

{

temp = array[i] ;

array[i] = array[j] ;

array[j] = temp ;

}

}

}

    原文作者:排序算法
    原文地址: https://blog.csdn.net/x_x_oo/article/details/52528681
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞