-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSingleElementInASortedArray.cpp
More file actions
55 lines (40 loc) · 1.27 KB
/
SingleElementInASortedArray.cpp
File metadata and controls
55 lines (40 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
Single Element in a Sorted Array
================================
URL: https://leetcode.com/explore/featured/card/may-leetcoding-challenge/535/week-2-may-8th-may-14th/3327/
You are given a sorted array consisting of only integers where every element appears exactly twice, except for one element which appears exactly once.
Find this single element that appears only once.
Example 1:
Input: [1,1,2,3,3,4,4,8,8]
Output: 2
Example 2:
Input: [3,3,7,7,10,11,11]
Output: 10
Note: Your solution should run in O(log n) time and O(1) space.
*/
#include<vector>
#include<iostream>
using namespace std;
class Solution {
public:
int singleNonDuplicate(vector<int> nums) {
int start = 0;
int end = nums.size()-1;
while(start<end){
int mid=(start+end)/2;
if(nums[mid]!=nums[mid-1] && nums[mid]!=nums[mid+1])
return nums[mid];
if(nums[mid]==nums[mid-1])
mid--;
if(mid%2==0)
start=mid+2;
else
end=mid-1;
}
return nums[start];
}
};
int main(){
cout<<Solution().singleNonDuplicate({1,1,2,3,3,4,4,8,8})<<endl;
cout<<Solution().singleNonDuplicate({3,3,7,7,10,11,11})<<endl;
}