We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe58928 commit f3c7e10Copy full SHA for f3c7e10
35. Search Insert Position
@@ -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
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