auto cmp = [](int a, int b) -> bool { return a > b; }; priority_queue<int, vector<int>, decltype(cmp)> q(cmp);
最后更新于4年前
这有帮助吗?