📜  PHP Ds\PriorityQueue isEmpty()函数

📅  最后修改于: 2022-05-13 01:57:40.400000             🧑  作者: Mango

PHP Ds\PriorityQueue isEmpty()函数

PHP中 Ds\PriorityQueue 类的isEmpty()函数用于判断特定的 PriorityQueue 实例是否为空。如果 PriorityQueue 为空,则返回 True,否则返回 False。

语法

bool isEmpty( )

参数:此函数不接受任何参数。

返回值:此函数根据此 PriorityQueue 是否为空返回一个布尔值。如果 PriorityQueue 为空,则返回 True,否则返回 False。

下面的程序说明了上述方法:



程序一

isEmpty());
  
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
  
// Check again if the PriorityQueue
// is Empty
var_dump($pq->isEmpty());
  
?> 
输出:
bool(true)
bool(false)

方案二:

isEmpty());
  
// Add elements to the PriorityQueue
$pq->push("Geeks", 1);
$pq->push("for", 2);
$pq->push("Geeks", 3);
  
// Check again if the PriorityQueue
// is Empty
var_dump($pq->isEmpty());
  
?> 
输出:
bool(true)
bool(false)

参考文献:http:// PHP.NET /手动/ EN / DS-priorityqueue.isempty。 PHP