Skip to content

This simple python project demonstrates how the binary search works.

Notifications You must be signed in to change notification settings

malan-bandara/Binary-Search-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Binary Search Algorithm

This simple python project demonstrates how the binary search works.

This algorithm takes an argument vector as the target element to find in the given array/list and output if the target is available in the array/list, if so it's going to output its index position.

Binary Search Explained

Binary search is an efficient algorithm for finding an item from a sorted list of items. It works by repeatedly dividing in half the portion of the list that could contain the item, until you've narrowed down the possible locations to just one.

Releases

No releases published

Packages

No packages published

Languages