题解 | #最小的K个数#

最小的K个数

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

 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param input int整型一维数组 
 * @param inputLen int input数组长度
 * @param k int整型 
 * @return int整型一维数组
 * @return int* returnSize 返回数组行数
 *
 * C语言声明定义全局变量请加上static,防止重复定义
 */
int partition(int* input, int low, int high){
    int p = input[low];
    while(low < high){
        while(low < high && input[high] >= p) high--;
        input[low] = input[high];
        while(low < high && input[low] < p) low++;
        input[high] = input[low];
    }
    input[low] = p;
    return low;
}
void quicksort(int* input, int low, int high){
    if(low < high){
        int p = partition(input, low, high);
        quicksort(input, low, p-1);
        quicksort(input, p+1, high);
    }
    
}
int* GetLeastNumbers_Solution(int* input, int inputLen, int k, int* returnSize ) {
    // write code here
    int* res = (int*) malloc(sizeof(int)*k);
    *returnSize = k;
    quicksort(input,0,inputLen-1);
    for(int i = 0; i < k; i++){
        res[i] = input[i];
    }
    return res;
}
全部评论

相关推荐

牛舌:如果我不想去,不管对方给了多少,我一般都会说你们给得太低了。这样他们就会给下一个offer的人更高的薪资了。
点赞 评论 收藏
分享
像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务