Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 17:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/6f6e1edf8de73dd7adba04f9bf5c409a to your computer and use it in GitHub Desktop.
Save parzibyte/6f6e1edf8de73dd7adba04f9bf5c409a to your computer and use it in GitHub Desktop.
<?php
$arreglo = [1, 5, 40, 45, 58, 77, 80, 200, 250];
$busqueda = 77;
$indice = busquedaBinaria($arreglo, $busqueda);
echo "El elemento $busqueda está en el índice $indice";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment