我正在使用 struct minHeap 使用 priority_queue 生成最小堆。函数 comp 使用 STL 中给出的排序函数以相反的顺序打印数字。现在我的疑问是我不能在函数排序中使用 struct minHeap 并且不能在 priorityQueue 中使用函数 comp。
我觉得 struct minHeap 和 comp 的功能是相似的。请解释一下何时将结构用于比较器以及何时使用普通函数在 STL 中充当比较器?
#include<iostream>
#include <queue>
#include <stdio.h>
#include<algorithm>
using namespace std;
struct minHeap
{
bool operator()(const int a , const int b )
{
return a>b;
}
};
bool comp(int a , int b)
{
return a>b;
}
int main()
{
priority_queue<int , vector<int> , minHeap > b;
b.push(4);
b.push(23);
b.push(12);
while(b.size()!=0)
{
cout << b.top() << " " ;
b.pop();
}
cout<<"\n" ;
int arr[] = {12,34, 112,12};
sort(arr , arr+4 ,comp);
for(int x= 0 ; x < 4 ; x++)
{
cout << arr[x] << " " ;
}
}