摘要: 1、priority_queue自定义比较结构 class Solution { public: struct cmp { bool operator()(int &a, int &b) const { //因为优先出列判定为!cmp,所以反向定义实现最小值优先 return a>b; } }; v 阅读全文
posted @ 2018-03-15 10:03 Silence、 阅读(148) 评论(0) 推荐(0) 编辑