PHP - Funzione Ds \ PriorityQueue :: toArray ()
La funzione Ds \ PriorityQueue :: toArray () può convertire la coda in un array.
Sintassi
public array Ds\PriorityQueue::toArray( void )
La funzione Ds \ PriorityQueue :: toArray () non ha parametri.
La funzione Ds \ PriorityQueue :: toArray () può restituire un array contenente tutti i valori nello stesso ordine della coda.
Esempio
<?php
$pqueue = new \Ds\PriorityQueue();
$pqueue->push("Tutorials", 1);
$pqueue->push("Point", 2);
$pqueue->push("India", 3);
echo "The equivalent array is: \n";
print_r($pqueue->toArray());
?>