forked from liuyubobobo/Play-Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
51 lines (39 loc) · 1.07 KB
/
main.cpp
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
/// Source : https://leetcode.com/problems/search-for-a-range/description/
/// Author : liuyubobobo
/// Time : 2017-11-16
#include <iostream>
#include <vector>
#include <cassert>
using namespace std;
/// Linear Scan
/// Time Complexity: O(n)
/// Space Complexity: O(1)
class Solution {
public:
vector<int> searchRange(vector<int>& nums, int target) {
int first = nums.size() + 1, last = -1;
for(int i = 0 ; i < nums.size() ; i ++)
if(nums[i] == target){
first = min(first, i);
last = max(last, i);
}
int res[2] = {first, last};
if(first == nums.size() + 1){
assert(last == -1);
res[0] = res[1] = -1;
}
return vector<int>(res, res + 2);
}
};
void printVec(const vector<int>& vec){
for(int e: vec)
cout << e << " ";
cout << endl;
}
int main() {
int nums[6] = {5, 7, 7, 8, 8, 10};
int target = 8;
vector<int> vec(nums, nums + sizeof(nums) / sizeof(int));
printVec(Solution().searchRange(vec, target));
return 0;
}