SplPriorityQueue::key()函数是PHP中的一个内置函数,用于返回当前节点索引。
用法:
mixed SplPriorityQueue::key()
参数:此函数不接受任何参数。
返回值:此函数返回当前节点索引。
例:
PHP
<?php
// Declare a class
class priorityQueue extends SplPriorityQueue {
// Compare function to compare priority
// queue elements
public function compare($p1, $p2) {
if ($p1 === $p2) return 0;
return $p1 < $p2 ? -1:1;
}
}
// Create an object of priority queue
$obj = new priorityQueue();
// Insert elements into the queue
$obj->insert("Geeks",2);
$obj->insert("GFG",1);
$obj->insert("G4G",3);
$obj->insert('G',4);
// Use key() function to get the
// current key of priority queue
var_dump($obj->key());
?>
输出
int(3)
相关用法
- PHP SplPriorityQueue isCorrupted()用法及代码示例
- PHP SplPriorityQueue isEmpty()用法及代码示例
- PHP SplPriorityQueue next()用法及代码示例
- PHP SplPriorityQueue rewind()用法及代码示例
- PHP SplPriorityQueue insert()用法及代码示例
- PHP SplPriorityQueue extract()用法及代码示例
- PHP SplPriorityQueue current()用法及代码示例
- PHP SplPriorityQueue count()用法及代码示例
- PHP SplPriorityQueue compare()用法及代码示例
- PHP key()用法及代码示例
- PHP SplDoublyLinkedList key()用法及代码示例
- PHP SplObjectStorage key()用法及代码示例
- PHP SplFixedArray key()用法及代码示例
- PHP SimpleXMLIterator key()用法及代码示例
- PHP ArrayIterator key()用法及代码示例
- PHP AppendIterator key()用法及代码示例
- PHP CachingIterator key()用法及代码示例
- PHP FilesystemIterator key()用法及代码示例
- PHP DirectoryIterator key()用法及代码示例
- PHP SplHeap key()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 PHP SplPriorityQueue key() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。