Created
March 7, 2017 16:30
-
-
Save xiaohanyu/f9642393e1c76164817f76a3cf60dc17 to your computer and use it in GitHub Desktop.
Simple binary search with simple unit test in Python.
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
import unittest | |
def binary_search(array, t): | |
l = 0 | |
h = len(array) - 1 | |
while (l <= h): | |
m = (l + h) // 2 | |
if (array[m] == t): | |
return m | |
elif (array[m] < t): | |
l = m + 1 | |
else: | |
h = m - 1 | |
return -1 | |
class TestBinarySearch(unittest.TestCase): | |
def test_binary_search(self): | |
self.assertEqual(binary_search([], 3), -1) | |
self.assertEqual(binary_search([1, 2], 3), -1) | |
self.assertEqual(binary_search([1, 2, 3, 4], 3), 2) | |
self.assertEqual(binary_search([1, 2, 3, 4, 5], 3), 2) | |
self.assertEqual(binary_search([1, 2, 3, 4], 3), 2) | |
self.assertEqual(binary_search([1, 2, 3, 4], 1), 0) | |
self.assertEqual(binary_search([1, 2, 3, 4], 4), 3) | |
if __name__ == '__main__': | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment