empty
语法:
1 |
bool empty() const; |
empty() 如果优先队列为空,则返回真
源代码
1 2 3 4 5 |
/** * Returns true if the %queue is empty. */ bool empty() const { return c.empty(); } |
测试代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// 梁笔记 // https://zouzhongliang.com #include <iostream> #include <queue> using namespace std; int main() { priority_queue<int> Qi; if (Qi.empty()) cout<<"Qi是内无元素"<<endl; else cout<<"Qi是有元素"<<endl; } |
测试结果
1 |
Qi是内无元素 |