How to do binary search for Ruby's array by #bsearch
We sometimes need to check if a value is included in an array. There are many methods to achieve that, e.g. Array#include?, Array#find, etc. But they use linear search, which time complexity is O(n). If it's a sorted array, we know the binary search can give you O(logn) speed. It would be a shame if you didn't know that Ruby's Array can perform binary search out of the box by Array#bsearch. Unfortunately, it may not be that intuitive to use so many people don't know hot to use it. Let's see some examples first: If you don't know what happened there, you can continue reading this article to know that

We sometimes need to check if a value is included in an array. There are many methods to achieve that, e.g. Array#include?
, Array#find
, etc. But they use linear search, which time complexity is O(n)
. If it's a sorted array, we know the binary search can give you O(logn)
speed. It would be a shame if you didn't know that Ruby's Array can perform binary search out of the box by Array#bsearch
. Unfortunately, it may not be that intuitive to use so many people don't know hot to use it. Let's see some examples first:
If you don't know what happened there, you can continue reading this article to know that