🎉 One-stop destination for all your technical interview Preparation 🎉
Given an array of integers nums which is sorted in ascending order, and an integer target, write a function to search target in nums. If target exists, then return its index. Otherwise, return -1.
You must write an algorithm with O(log n) runtime complexity.
class Solution{
public:
int search(vector<int> &nums, int target)
{
int n = nums.size();
int l = 0, r = n - 1, mid;
while (l <= r)
{
mid = l + (r - l) / 2;
if (nums[mid] == target)
return mid;
else if (nums[mid] > target)
r = mid - 1;
else
l = mid + 1;
}
return -1;
}
};