C++100w个数中找出最大的前K个数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++100w个数中找出最大的前K个数相关的知识,希望对你有一定的参考价值。

#include <iostream>

using namespace std;

#include <assert.h>


const int N = 10000;

const int K = 100;


void AdjustDown(int topK[], int size, size_t parent)

{

assert(topK);


int child = parent*2 + 1;


while (child < size)

{

if (child+1 < size

&& topK[child+1] < topK[child])

{

++child;

}


if (topK[child] < topK[parent])

{

swap(topK[child], topK[parent]);


parent = child;

child = parent*2 + 1;

}

else

{

break;

}

}

}


void GetTopKValue(int array[], int topK[])

{

assert(K < N);


for (int i = 0; i < K; ++i)

{

topK[i] = array[i];

}


//建小堆

for (int i = (K-2)/2; i >= 0; --i)

{

AdjustDown(topK, K, i);

}


for (int i = K; i < N; ++i)

{

if (array[i] > topK[0])

{

topK[0] = array[i];

AdjustDown(topK, K, 0);

}

}


for (int i = 0; i < K; ++i)

{

cout<<topK[i]<<" ";


if (i%5 == 0)

{

cout<<endl;

}

}


cout<<endl;

}


void Test()

{

int array[N] = {0};

int topK[K] = {0};


for (int i = 0; i < N; ++i)

{

array[i] = i;

}

array[9] = 111111;

array[99] = 1111111;

array[999] = 11111111;

GetTopKValue(array, topK);

}


int main()

{

Test();

return 0;

}


本文出自 “zgw285763054” 博客,请务必保留此出处http://zgw285763054.blog.51cto.com/11591804/1785416

以上是关于C++100w个数中找出最大的前K个数的主要内容,如果未能解决你的问题,请参考以下文章

100w个数中找出最大的前K个数

海量数据处理 大量数据中找出最大的前10个数 (Top K 问题)

Top k 问题

寻找最大或最小的K个数

求出100个数组里的最大的前十个数最快的算法,c++

海量数据处理 - 10亿个数中找出最大的10000个数(top K问题)