题解 | #最小的K个数#

最小的K个数

http://www.nowcoder.com/practice/6a296eb82cf844ca8539b57c23e6e9bf

堆排序


public class Solution {
    public ArrayList<Integer> GetLeastNumbers_Solution(int [] input, int k) {
        ArrayList<Integer> res=new ArrayList<>();
        for(int i=input.length/2-1;i>=0;i--){
            maxheap(input,i,input.length);
        }
        for(int i=input.length-1;i>=input.length-1-(k-1);i--){
            swap(input,i,0);
            maxheap(input,0,i);
        }
        for(int i=input.length-1;i>=input.length-k;i--){
            res.add(input[i]);
        }
        return res;
    }
    void swap(int[] a,int i,int j){
        int temp=a[i];
        a[i]=a[j];
        a[j]=temp;
    }
    void maxheap(int[] a,int i,int length){
        int temp=a[i];
        for(int k=2*i+1;k<length;k=2*k+1){
            if(k+1<length&&a[k+1]<a[k]){
                k=k+1;
            }
            if(a[k]<temp){
                a[i]=a[k];
                i=k;
            }
            else break;
        }
        a[i]=temp;
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-27 10:52
点赞 评论 收藏
分享
object3:开始给部分🌸孝子上人生第一课了
点赞 评论 收藏
分享
10-21 23:48
蚌埠坦克学院
csgq:可能没hc了 昨天一面完秒挂
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务