码迷,mamicode.com
首页 > 其他好文 > 详细

冒泡排序

时间:2014-06-18 14:18:37      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   string   

package foo;

public class Main {
    public static void bubbleSort(int[] a, int len) {
        int in, out;
        for (out = len - 1; out > 0; --out) {
            for (in = 0; in < out; ++in) {
                if (a[in] > a[in+1]) {
                    swap(a, in, in + 1);
                }
            }
        }
    }
    public static void swap(int[] a, int index1, int index2) {
        int temp = a[index1];
        a[index1] = a[index2];
        a[index2] = temp;
    }
    public static void main(String[] args) {
        int[] a = new int[] {3, 2, 1, 5, 4};
        bubbleSort(a, a.length);
    }
}

冒泡排序的效率O(N*N),比较N*N/2,交换N*N/4

冒泡排序,布布扣,bubuko.com

冒泡排序

标签:style   class   blog   code   color   string   

原文地址:http://www.cnblogs.com/qrlozte/p/3791512.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!