This repository was archived by the owner on Apr 1, 2021. It is now read-only.
Add Algorithm Binary Search#1172
Merged
Rafase282 merged 2 commits intofreeCodeCamp:masterfrom Jun 22, 2016
Merged
Conversation
|
|
||
| ## Algorithm | ||
|
|
||
| Binary search works on sorted arrays. A binary search begins by comparing the middle element of the array with the target value. If the target value matches the middle element, its position in the array is returned. If the target value is less or more than the middle element, the search continues the lower or upper half of the array respectively with a new middle element, eliminating the other half from consideration. |
Contributor
Author
There was a problem hiding this comment.
@atjonathan: Quoting, "Its, without an apostrophe, is the possessive of the pronoun it. It’s, with an apostrophe, is a contraction of it is or it has. If you’re not sure which spelling to use, try replacing it with it is or it has. If neither of those phrases works in its place, then its is the word you’re looking for.".
Sorry for the "Grammar Nazi" behavior 😄
There was a problem hiding this comment.
@dakshshah96, no worries 😜, i see the context now.
LGTM 👍 |
|
@Rafase282, @alayek, please take a look 🎉 |
Member
|
There is no need to put the Big O notation stuff in code blocks. other than that, it looks good. |
Contributor
Author
|
@Rafase282 Done 👍 |
26 tasks
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refer #1048