首页 > 编程语言 > 详细

选择排序

时间:2015-03-08 02:06:50      阅读:187      评论:0      收藏:0      [点我收藏+]

选择排序的代码实现:

?

package ganggong.algorithm.sort;

public class SortTest {

    public static void main(String[] args) {
        SortTest sortTest = new SortTest();
        int[] array = sortTest.generateArray(7);
        System.out.print("unsorted array: ");
        sortTest.printArray(array);

        sortTest.selectionSort(array);
    }

    private void selectionSort(int[] array) {
        System.out.println("\nselection sort begin:");

        for (int i = 0; i < array.length; i++) {
            printArray(array);
            System.out.print(" ----> ");

            int minIndex = i;
            for (int j = i; j < array.length; j++) {
                if (array[j] < array[minIndex]) {
                    minIndex = j;
                }
            }

            int t = array[i];
            array[i] = array[minIndex];
            array[minIndex] = t;

            printArray(array);
            System.out.println();
        }

        assertSorted(array);
    }

    private int[] generateArray(int size) {
        int[] array = new int[size];
        for (int i = 0; i < array.length; i++) {
            array[i] = (int) (Math.random() * 10);
        }
        return array;
    }

    private void printArray(int[] array) {
        for (int i = 0; i < array.length; i++) {
            System.out.print(array[i] + "\t");
        }
    }

    private void assertSorted(int[] array) {
        boolean sorted = true;
        for (int i = 0; i < array.length - 1; i++) {
            if (array[i] > array[i + 1]) {
                sorted = false;
                break;
            }
        }

        if (!sorted) {
            throw new RuntimeException("Not sorted");
        }
    }

}

?

结果如下:

unsorted array: 7 9 6 6 4 2 1
selection sort begin:
7 9 6 6 4 2 1 ----> 1 9 6 6 4 2 7
1 9 6 6 4 2 7 ----> 1 2 6 6 4 9 7
1 2 6 6 4 9 7 ----> 1 2 4 6 6 9 7
1 2 4 6 6 9 7 ----> 1 2 4 6 6 9 7
1 2 4 6 6 9 7 ----> 1 2 4 6 6 9 7
1 2 4 6 6 9 7 ----> 1 2 4 6 6 7 9
1 2 4 6 6 7 9 ----> 1 2 4 6 6 7 9

?

选择排序

原文:http://gonggang.iteye.com/blog/2190360

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!