优先队列写法

struct P
{
    int x;
    bool operator < (const P &a) const {
        return  x > a.x;//从小到大
    }
};
    priority_queue<P> q;

  

posted @ 2015-11-13 13:51  Painting、时光  阅读(262)  评论(0编辑  收藏  举报