Java堆排序

堆排序:

public class Test02Sort {
    //堆排序
    //把数组建成一个大堆,把堆顶元素和堆最后一个元素互换,把最后一个元素删除,再从堆顶向下调整
    public static void heapSort(int[] array){
        //先建立堆
        creatHeap(array);

        //循环把堆顶元素交换到最后,并进行调整
        for (int i=0;i< array.length-1;i++){
            //length-1,当堆中只剩下一个元素的时候,也就一定是有序的

            //交换堆顶元素和堆最后一个元素
            swap(array,0,array.length-1-i);

            //堆最后一个元素下标array.length-1-i
            shiftDown(array,array.length-1-i,0);
        }
    }

    private static void creatHeap(int[] array){
        //从最后一个非叶子节点出发向前循环
        for (int i=(array.length-1-1)/2;i>=0;i--){
            shiftDown(array,array.length,i);
        }
    }

    private static void shiftDown(int[] array,int heaplength,int index){
        //大堆,升序
        int parent=index;
        int child=2*parent+1;

        while (child<heaplength){
            if(child+1<heaplength&&array[child+1]>array[child]){
                child=child+1;
                //条件结束,child已经是最有子树比较大的值得下标

                if(array[child]>array[parent]){
                    swap(array,child,parent);
                }else {
                    break;
                }
                parent=child;
                child=2*parent+1;
            }
        }
    }

    private static void swap(int[] array,int i,int j){
        int tmp=array[i];
        array[i]=array[j];
        array[j]=tmp;
    }
    
}

选择排序:

//选择排序
    //每次从数组中找出最小值,然后把最小值放到合适的位置上
    //时间复杂度:O(N^2)  空间复杂度:O(1)
    public static void selectSort(int[] array){
        for (int bound=0;bound<array.length;bound++){
            //以bound位置的元素作为擂主
            //循环从待排序区间中取出元素和擂主进行比较
            for (int cur=bound+1;cur< array.length;cur++){
                if(array[cur]<array[bound]){
                    //打擂成功
                    int tmp=array[cur];
                    array[cur]=array[bound];
                    array[bound]=tmp;
                }
            }
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值