-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlec_12.cpp
71 lines (57 loc) Β· 1.52 KB
/
lec_12.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
class Solution {
public:
int majorityElement(vector<int>& nums) {
int n = nums.size();
for(int i = 0 ;i<n;i++){
int cnt = 0 ;
for(int j = 0 ;j<n;j++){
if(nums[i] == nums[j]){
cnt++;
}
}
if(cnt>n/2){
return nums[i];
}
}
return -1;
}
};
// alternative solution
class Solution {
public:
int majorityElement(vector<int>& nums) {
int n = nums.size();
map<int , int>mpp;
for(int i = 0 ;i<n;i++){
mpp[nums[i]]++;
}
for(auto it:mpp){
if(it.second > (n/2)){
return it.first;
}
}
return -1;
}
};
// alternative solution
class Solution {
public:
int majorityElement(vector<int>& nums) {
int n = nums.size();
int cnt = 0 ;
int el ;
for(int i = 0 ;i<n;i++){
if(cnt == 0){
el = nums[i];
}
else if(el == nums[i]) cnt++;
else cnt --;
}
int cnt1 = 0 ;
for(int i = 0 ;i<n;i++){
if(nums[i] == el) cnt1++;
}
if(cnt1 >(n/2) ) return el;
return -1;
}
};