CSP问题:
由于对于各种函数类型模式不熟悉的缘故,导致代码能力下降,以后需要减少对于这一类信息的搜索,或者每一次搜索后都要尽量记得内容
C++中sort在#include <algorithm>中
优先队列的默认选项是大顶堆 即priority_queue <int>;
priority_queue <int,vector<int>,greater<int> > q;
//降序队列 priority_queue <int,vector<int>,less<int> >q;
自定义cmp
struct tmp2 //重写仿函数
{
bool operator() (tmp1 a, tmp1 b)
{
return a.x < b.x; //大顶堆
}
};
网友评论