Saturday, September 28, 2024
Google search engine
HomeLanguagesPHP DsPriorityQueue peek() Function

PHP Ds\PriorityQueue peek() Function

The Ds\PriorityQueue::peek() Function in PHP is used to get the value present at the front of a PriorityQueue.

Syntax:

mixed public Ds\PriorityQueue::peek ( void )

Parameters: This function does not accepts any parameters.

Return Value: This function returns the value present at the front of this PriorityQueue. The return type of the function is mixed and depends on the type of value stored in the PriorityQueue.

Exception: This function throws an UnderflowException if the PriorityQueue is empty.

Below programs illustrate the Ds\PriorityQueue::peek():

Program 1:




<?php 
  
// Declare new PriorityQueue 
$pq = new \Ds\PriorityQueue(); 
  
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
  
echo "PriorityQueue is: \n";
print_r($pq);
  
// Get element at the front
echo "\nElement at front is: ";
print_r($pq->peek());
  
?> 


Output:

PriorityQueue is: 
Ds\PriorityQueue Object
(
    [0] => Three
    [1] => Two
    [2] => One
)

Element at front is: Three

Program 2:




<?php 
  
// Declare new PriorityQueue 
$pq = new \Ds\PriorityQueue(); 
  
echo "PriorityQueue is: \n";
print_r($pq);
  
// Get element at the front
echo "\nElement at front is: ";
print_r($pq->peek());
  
?> 


Output:

PHP Fatal error:  Uncaught UnderflowException

Reference: http://php.net/manual/en/ds-priorityqueue.peek.php

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments