La función Ds\Deque::find() es una función incorporada en PHP que se usa para encontrar el índice del elemento en Deque si el elemento se encuentra en Deque.
Sintaxis:
public Ds\Deque::find( $value ) : mixed
Parámetros: esta función acepta un solo parámetro $valor que contiene el elemento cuyo índice se va a encontrar.
Valor devuelto: esta función devuelve el índice del elemento si el elemento existe, de lo contrario devuelve falso.
Los siguientes programas ilustran la función Ds\Deque::find() en PHP:
Programa 1:
PHP
<?php // Declare a deque $deck = new \Ds\Deque([10, 20, 3, 40, 50, 6]); echo("Elements in the Deque\n"); // Display the Deque elements print_r($deck); echo("\nIndex of 3 in the deque: "); // Use find() function to find // the index of element print_r($deck->find(3)); ?>
Producción:
Elements in the Deque Ds\Deque Object ( [0] => 10 [1] => 20 [2] => 3 [3] => 40 [4] => 50 [5] => 6 ) Index of 3 in the deque: 2
Programa 2:
PHP
<?php // Declare a deque $deck = new \Ds\Deque(["Geeks", "for", "GFG"]); echo("Elements in the Deque\n"); // Display the Deque elements print_r($deck); echo("\nIndex of 3 in the deque: "); // Use find() function to find // the index of element var_dump($deck->find("ABC")); ?>
Producción:
Elements in the Deque Ds\Deque Object ( [0] => Geeks [1] => for [2] => GFG ) Index of 3 in the deque: bool(false)
Referencia: http://php.net/manual/en/ds-deque.find.php