Problem Description
Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times.
Key Insights
- An element appears more than n/3 times if it is a "majority" element.
- There can be at most two majority elements since if there were three, they would each have to appear more than n/3 times, which is impossible.
- We can utilize a modified version of the Boyer-Moore Voting Algorithm to efficiently find these elements.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(1)
Solution
To solve the problem, we use a two-pass algorithm. In the first pass, we identify up to two potential majority candidates using a counter mechanism. In the second pass, we verify if these candidates do indeed appear more than n/3 times. This approach ensures we only use constant space and achieve linear time complexity.
- First Pass: Use two variables to keep track of the candidates and their counts.
- Second Pass: Count the occurrences of these candidates to confirm if they appear more than n/3 times.