Created
October 30, 2014 17:39
-
-
Save pmallory/aef5e4b9f92b3c7f8071 to your computer and use it in GitHub Desktop.
Binary search
This file contains hidden or 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
import matplotlib.pyplot as plt | |
import random | |
def binary_search(target, epsilon): | |
guess = 1.0 | |
bottom = 1.0 | |
top = float("inf") | |
steps = 0 | |
while abs(target-guess)>epsilon: | |
steps += 1 | |
if guess < target: | |
bottom = guess | |
guess = min((top+bottom)/2, guess*2) | |
elif guess > target: | |
top = guess | |
guess = max((top+bottom)/2, guess*.75) | |
#print("top:{} bottom:{} guess:{}".format(top, bottom, guess)) | |
return guess, steps | |
target = [] | |
steps_to_find = [] | |
for _ in xrange(1000): | |
t = random.randint(1,1e10) | |
steps = binary_search(t, t/100)[1] | |
target.append(t) | |
steps_to_find.append(steps) | |
plt.scatter(target, steps_to_find) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment