void topKNum(int array[], int n, int k) {
if(array == NULL || n < k || n <= 0) { throw ("Invalid input."); }
priority_queue< int, vector<int>, greater<int> > heap;
for(int i = 0; i < n; i++) {
if(i < k) { heap.push(array[i]); } else { if(array[i] > heap.top()) { heap.pop(); heap.push(array[i]); } } }
while(!heap.empty()) { cout << heap.top() << " "; heap.pop(); } cout << endl; }
|