답안 #145792

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
145792 2019-08-21T06:57:29 Z uvelo 짝수 정렬 (tutorial3) C++14
컴파일 오류
0 ms 0 KB
#include <iostream>
#include <queue>
#include <functional>
using namespace std;

priority_queue<int, vector<int>, greater<int> > pq;

void sort_even(int n,int* a){
	for (int i = 0; i < n; i++){
		if (a[i] & 1) continue;
		pq.push(a[i]);
	}
	while (!pq.empty()){
		Report(pq.top()); pq.pop();
	}
}

Compilation message

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:14:3: error: 'Report' was not declared in this scope
   Report(pq.top()); pq.pop();
   ^~~~~~
tutorial3.cpp:14:3: note: suggested alternative: 'qsort'
   Report(pq.top()); pq.pop();
   ^~~~~~
   qsort