Ds\PriorityQueue::peek

(PECL ds >= 1.0.0)

Ds\PriorityQueue::peekRetorna o valor na frente da fila

Descrição

public Ds\PriorityQueue::peek(): mixed

Retorna o valor na frente da fila, mas não o remove.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

O valor na frente da fila.

Erros/Exceções

UnderflowException se vazio.

Exemplos

Exemplo #1 Exemplo de Ds\PriorityQueue::peek()

<?php
$queue
= new \Ds\PriorityQueue();

$queue->push("a", 5);
$queue->push("b", 15);
$queue->push("c", 10);

var_dump($queue->peek());
?>

O exemplo acima produzirá algo semelhante a:

string(1) "b"
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top