Skip to content

howeih/day-8-binary-search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Day 8: Binary search

Binary chop,is a search algorithm that finds the position of a target value within a sorted array.Binary search compares the target value to the middle element of the array; if they are unequal, the half in which the target cannot lie is eliminated and the search continues on the remaining half until it is successful. If the search ends with the remaining half being empty, the target is not in the array.

About

day 8 - binary search

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages