A C# implementation of a binary search method for arrays
Method | Summary | Big O Time | Big O Space | Example |
---|---|---|---|---|
Binary Search | Searches an array through the use of binary search to find a key | O(LogN) | O(1) | BinarySearch(new int[]{1, 4, 6}, 6) |
For more information on Markdown: https://www.markdownguide.org/cheat-sheet