Skip to content

Instantly share code, notes, and snippets.

@MithraTalluri
Last active March 7, 2022 02:20
Show Gist options
  • Save MithraTalluri/b7cccb146aac5038871e5e908f43de38 to your computer and use it in GitHub Desktop.
Save MithraTalluri/b7cccb146aac5038871e5e908f43de38 to your computer and use it in GitHub Desktop.
Conditions for Binary Search
low high mid while(?)
mid + 1 mid - 1 low + ((high - low) / 2) low <= high
mid + 1 mid low + ((high - low) / 2) low < high
mid mid - 1 low + ((high - low + 1) / 2) low < high
mid mid X (infinite loop) X (invalid)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment