-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday13.cpp
50 lines (46 loc) · 1 KB
/
day13.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
#include<bits/stdc++.h>
using namespace std;
int majorityElement(vector<int> &nums) {
int n = nums.size();
// int hashh[100] = {0};
// for (int i = 0; i < n; i++) {
// hashh[nums[i]] += 1;
// }
// for (int i = 0; i < 100; i++) {
// if (hashh[i] > n / 2) {
// return i;
// }
// }
// map<int, int> mappp;
// for (int i = 0; i < n; i++) {
// mappp[nums[i]]++;
// }
// for (auto it: mappp) {
// if (it.second > n / 2) {
// return it.first;
// }
// }
int elm;
int count = 0;
for (int i = 0; i < n; i++) {
if (count == 0) {
count = 1;
elm = nums[i];
} else if (nums[i] == elm) {
count++;
} else {
count--;
}
}
for (auto i: nums) {
if (nums[i] == elm) {
return i;
}
}
return -1;
}
int main() {
vector<int> nums = {2, 2, 1, 1, 1, 1, 1, 2, 2};
cout << majorityElement(nums);
return 0;
}