Search in a Big Sorted Array
Given a big sorted array with positive integers sorted by ascending order. The array is so big so that you can not get the length of the whole array directly, and you can only access the kth number byArrayReader.get(k)
(or ArrayReader->get(k) for C++). Find the first index of a target number. Your algorithm should be in O(log k), where k is the first index of the target number.
Return -1, if the number doesn't exist in the array.
Example
Given[1, 3, 6, 9, 21, ...]
, and target =3
, return1
.
Given[1, 3, 6, 9, 21, ...]
, and target =4
, return-1
Note
倍分法,先以跨度加倍的方式(即index位置为1, 2, 4, 8…..2^x, 2^(x+1)), 找到第一个比target大的数,再二分查找target
Code
Last updated