Created
June 14, 2010 01:43
-
-
Save CrociDB/437176 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
# Algoritmo de busca binária | |
def busca_binaria(vetor, num): | |
direito = len(vetor) | |
esquerdo = 0 | |
meio_anterior = -1 | |
# O número passado é menor que o menor número do vetor | |
if num < vetor[0]: | |
return -1 | |
while True: | |
meio = (esquerdo + direito) / 2 | |
valor = vetor[meio] | |
# Valor achado | |
if num == valor: | |
return meio | |
# Valor não achado | |
if meio == meio_anterior: | |
return -1 | |
elif num < valor: | |
direito = meio | |
else: | |
esquerdo = meio | |
meio_anterior = meio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment