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.
// C 语言循环解法
int searchInsert(int* nums, int numsSize, int target)
{
int i = 0;
for(i=0;i<numsSize;i++)
{
if(nums[i] >= target)
return i;
}
return numsSize;
}