gpt4 book ai didi

php - PHP 中的优先级队列

转载 作者:行者123 更新时间:2023-12-02 22:04:15 25 4
gpt4 key购买 nike

我正在尝试使用此代码创建优先级队列,但找不到问题出在哪里。有人告诉我哪里出错了。

<?php

class PriorityQueue implements Iterator , Countable
{
public function __construct() {
$flags = self::EXTR_DATA;
$items = array();
}

function compare ( mixed $priority1 , mixed $priority2 ){}
function count (){
return count($this->items);
}

function current (){
switch ($this->flags) {
case self::EXTR_BOTH:
$ret = array();
$ret['Patient'] = current($this->items);
$ret['Priority'] = $this->key();
break;
case self::EXTR_DATA:
$ret = current($this->items);
break;
case self::EXTR_PRIORITY:
$ret = $this->key();
break;
};
return $ret;
}

function extract (){
$ret = $this->current();
$this->next();
return $ret;
}

function insert ($name,$priority){
$patient = array();

return $patient[$name] = $priority;
}

function isEmpty ()
{
return empty($this->items);
}

function key (){
return substr(key($this->items), 0, 9);
}

function next (){
//array_shift($this->items);
return($this->items);
echo "<br />";
}
function recoverFromCorruption (){}
function rewind (){}

function setExtractFlags (int $flags ){
switch ($flags) {
case self::EXTR_BOTH:
case self::EXTR_DATA:
case self::EXTR_PRIORITY:
$this->flags = $flags;
break;
};
}

function top (){
return $this->current();
}

function valid () {
if (NULL !== key($this->items)) {
return TRUE;
}
return FALSE;
}// function valid
/**
* Extract the data.
*/
const EXTR_DATA = 1;
/**
* Extract the priority.
*/
const EXTR_PRIORITY = 2;
/**
* Extract an array containing both priority and data.
*/
const EXTR_BOTH = 3;
};


$objPQ = new splPriorityqueue();
$objPQ->insert('Richard',9);
$objPQ->insert('paul',1);
$objPQ->insert('Ken',8);
$objPQ->insert('peter',2);
$objPQ->insert('Rick',7);
$objPQ->insert('Dan',5);



echo "PATIENTS = ".$objPQ->count()."<br />";

//mode of extraction
$objPQ->setExtractFlags(splPriorityqueue::EXTR_BOTH);

//Go to TOP
$objPQ->top();

for($i=0,$j=$objPQ->count(); $i<$j; $i++){
//print_r($objPQ->current());

$patients = $objPQ->current();
foreach ($patients as $patient=>$value){
echo $patient."<br />".$value;

$objPQ->next();
echo "<br />";
}
}

?>

我现在得到一些奇怪的结果

data-patient Richard
priority-9
......
etc

我希望得到的结果是

Richard - 9
Ken - 8
Rick - 7
Dan - 5
Peter - 2
Paul - 1

考虑优先级

最佳答案

标准 PHP 库 (SPL) 实现了 SplPriorityQueue类:

$pq = new SplPriorityQueue();

// The insert method inserts an element in the queue by shifting it up
$pq->insert('A', 3);
$pq->insert('B', 6);
$pq->insert('C', 1);
$pq->insert('D', 2);

// Count the elements
echo "count ->" . $pq->count() . PHP_EOL;

// Sets the mode of extraction (EXTR_DATA, EXTR_PRIORITY, EXTR_BOTH)
$pq->setExtractFlags(SplPriorityQueue::EXTR_BOTH);

// Go at the node from the top of the queue
$pq->top();

// Iterate the queue (by priority) and display each element
while ($pq->valid()) {
print_r($pq->current());
echo PHP_EOL;
$pq->next();
}

关于php - PHP 中的优先级队列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16386107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com