當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP SplPriorityQueue key()用法及代碼示例


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)

參考:https://www.php.net/manual/en/splpriorityqueue.key.php

相關用法


注:本文由純淨天空篩選整理自AshokJaiswal大神的英文原創作品 PHP SplPriorityQueue key() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。