优先队列+自定义排序 发表于 2020-12-05 分类于 算法 自定义比较函数 12345struct cmp { bool operator () (node a, node b) { return a.value < b.value;//按value的小根堆 }}; 声明一个优先队列 1priority_queue<node, vector<node >, cmp > aPriorityQueue;