forked from fineanmol/Hacktoberfest2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleetcode_5thoct_dailychangelle
50 lines (39 loc) · 1.47 KB
/
leetcode_5thoct_dailychangelle
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
229. Majority Element II
Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times.
class Solution {
public List<Integer> majorityElement(int[] nums) {
int n = nums.length; //size of the array
int cnt1 = 0, cnt2 = 0; // counts
int el1 = Integer.MIN_VALUE; // element 1
int el2 = Integer.MIN_VALUE; // element 2
// applying the Extended Boyer Moore's Voting Algorithm:
for (int i = 0; i < n; i++) {
if (cnt1 == 0 && el2 != nums[i]) {
cnt1 = 1;
el1 = nums[i];
} else if (cnt2 == 0 && el1 != nums[i]) {
cnt2 = 1;
el2 = nums[i];
} else if (nums[i] == el1) cnt1++;
else if (nums[i] == el2) cnt2++;
else {
cnt1--; cnt2--;
}
}
List<Integer> ls = new ArrayList<>(); // list of answers
// Manually check if the stored elements in
// el1 and el2 are the majority elements:
cnt1 = 0; cnt2 = 0;
for (int i = 0; i < n; i++) {
if (nums[i] == el1) cnt1++;
if (nums[i] == el2) cnt2++;
}
int mini = (int)(n / 3) + 1;
if (cnt1 >= mini) ls.add(el1);
if (cnt2 >= mini) ls.add(el2);
// Uncomment the following line
// if it is told to sort the answer array:
//Collections.sort(ls); //TC --> O(2*log2) ~ O(1);
return ls;
}
}