優先隊列寫法

struct P
{
    int x;
    bool operator < (const P &a) const {
        return  x > a.x;//從小到大
    }
};
    priority_queue<P> q;
相關文章
相關標籤/搜索