Day 5 Leet code series, today we will be picking the problem Search Insert Position (https://leetcode.com/problems/search-insert-position/).
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You must write an algorithm with O(log n) runtime complexity.
Example 1:
Input: nums = [1,3,5,6], target = 5 Output: 2
Example 2:
Input: nums = [1,3,5,6], target = 2 Output: 1
Example 3:
Input: nums = [1,3,5,6], target = 7 Output: 4 Solution 1: With O(n) time.
class Solution {
public:
int searchInsert(vector<int>& nums, int target) {
int count=0;
while(nums[count] < target && count < nums.size()-1){
count++;
}
if(count == nums.size()-1 && nums[count] < target){
return count+1;
}
return count;
}
};
Solution 2: In o(logN) time (using Binary search):
class Solution {
public:
int searchInsert(vector<int>& nums, int target) {
int start = 0;
int end = nums.size() -1;
int ans = nums.size();
while(start <= end){
int mid = (start + end)/2;
if(nums[mid] < target){
start = mid + 1;
}
else{
ans = mid;
end = mid-1;
}
}
return ans;
}
};

Leave a comment