java开发之排序算法

1.冒泡排序(从小到大排)

public class Sort {
    public void bubbleSort(int array[]) {
        int t = 0;
        for (int i = 0; i < array.length - 1; i++)
            for (int j = 0; j < array.length - 1 - i; j++)
                if (array[j] > array[j + 1]) {
                    t = array[j];
                    array[j] = array[j + 1];
                    array[j + 1] = t;
                }
            }
    public static void main(String[] args) {
        int[] array = { 37, 47, 23, 100, 19, 56, 56, 99, 9 };
        Sort st = new Sort();
         st.bubbleSort(array);
        System.out.println("排序后:" + Arrays.toString(array));
        }
    }

输出结果为
冒泡排序
选择排序

public class Sort {
    public void selectSort(int array[]) {
            int t = 0;
            for (int i = 0; i < array.length - 1; i++){
                int index=i;
                for (int j = i + 1; j < array.length; j++)
                    if (array[index] > array[j])
                        index=j;
                if(index!=i){ //找到了比array[i]小的则与array[i]交换位置
                    t = array[i];
                    array[i] = array[index];
                    array[index] = t;
                }
            }
        }
     public static void main(String[] args) {
        int[] array = { 37, 47, 23, 100, 19, 56, 56, 99, 9 };
        Sort st = new Sort();
         st.selectSort(array);
        System.out.println("排序后:" + Arrays.toString(array));
        }   
  }  

输出结果:
选择排序
插入排序

public class Sort {
    public void insertionSort(int array[]) {
            int i, j, t = 0;
            for (i = 1; i < array.length; i++) {
                t = array[i];
                for (j = i - 1; j >= 0 && t < array[j]; j--)
                    array[j + 1] = array[j];
                array[j + 1] = t;
            }
        }
    public static void main(String[] args) {
        int[] array = { 37, 47, 23, 100, 19, 56, 56, 99, 9 };
        Sort st = new Sort();
        st.insertionSort(array);
        System.out.println("排序后:" + Arrays.toString(array));
        }   
}

输出结果为
插入排序
分治法快速排序

public class Sort {
    public void quickSort(int array[], int low, int high) {// 传入low=0,high=array.length-1;
            int pivot, p_pos, i, t;// pivot->位索引;p_pos->轴值。
            if (low < high) {
                p_pos = low;
                pivot = array[p_pos];
                for (i = low + 1; i <= high; i++)
                    if (array[i] > pivot) {
                        p_pos++;
                        t = array[p_pos];
                        array[p_pos] = array[i];
                        array[i] = t;
                    }
                t = array[low];
                array[low] = array[p_pos];
                array[p_pos] = t;
                // 分而治之
                quickSort(array, low, p_pos - 1);// 排序左半部分
                quickSort(array, p_pos + 1, high);// 排序右半部分
            }
        }
    public static void main(String[] args) {
        int[] array = { 37, 47, 23, 100, 19, 56, 56, 99, 9 };
        Sort st = new Sort();
       st.quickSort(array, 0, array.length - 1);
        System.out.println("排序后:" + Arrays.toString(array));
        }   

}

输出结果:
分治法快速排序

=================谢谢您的关注,后续会更新更多技术内容=========

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值