Skip to content

Commit f3c7e10

Browse files
Create 35. Search Insert Position
1 parent fe58928 commit f3c7e10

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

35. Search Insert Position

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
class Solution {
2+
public:
3+
int searchInsert(vector<int>& nums, int target) {
4+
5+
6+
int mid;
7+
int s=1;
8+
int e=nums.size()-1;
9+
10+
11+
mid=s+(e-s)/2;
12+
13+
while(s<=e)
14+
{
15+
if((nums[mid]>target && nums[mid-1]<target)||
16+
nums[mid]== target)
17+
18+
return mid;
19+
else if(nums[mid]> target)
20+
e=mid-1;
21+
else
22+
s=mid+1;
23+
24+
mid=s+(e-s)/2;
25+
}
26+
27+
if(mid==1)
28+
{
29+
if(target>nums[0]) return 1;
30+
else return 0;
31+
}
32+
return mid;
33+
}
34+
};

0 commit comments

Comments
 (0)