Max Val and Number of Occurrences in O(n) Time Using Java


Given an array of integers, return the maximum value and its number of occurrences.

Example:

Input: nums = [2, 7, 11, 8, 11, 8, 3, 11]
Output: [11, 3]
Explanation: The maximum value is 11 and it appears 3 times

Note:

Your algorithm should run in O(n) time and use O(1) space.


Follow up:

Could you do this in one pass (e.g. looping over the array only once)?


Problem Definition

The problem requires us to find the maximum value in an array of integers and count how many times this maximum value appears. The solution should be efficient, running in O(n) time complexity and using O(1) space complexity.

Input:

An array of integers, nums.

Output:

An array containing two elements: the maximum value and its number of occurrences.

Constraints:

Example:

Input: nums = [2, 7, 11, 8, 11, 8, 3, 11]
Output: [11, 3]
Explanation: The maximum value is 11 and it appears 3 times

Understanding the Problem

The core challenge is to find the maximum value and count its occurrences in a single pass through the array. This is significant in scenarios where performance is critical, such as real-time data processing.

Common Applications:

Potential Pitfalls:

Approach

To solve this problem efficiently, we can use a single pass through the array while maintaining two variables: one for the maximum value and one for its count.

Naive Solution:

A naive solution would involve two passes: one to find the maximum value and another to count its occurrences. This approach is not optimal as it requires O(n) time complexity but involves two passes.

Optimized Solution:

We can optimize the solution by combining the two tasks into a single pass. We will iterate through the array once, updating the maximum value and its count as we go.

Thought Process:

Algorithm

Here is a step-by-step breakdown of the algorithm:

  1. Initialize maxVal to the first element of the array and count to 0.
  2. Iterate through each element in the array:
    • If the current element is greater than maxVal, update maxVal and set count to 1.
    • If the current element is equal to maxVal, increment count.
  3. Return an array containing maxVal and count.

Code Implementation

public class MaxValueAndOccurrences {
    public static int[] findMaxAndCount(int[] nums) {
        // Initialize maxVal to the first element and count to 0
        int maxVal = nums[0];
        int count = 0;

        // Iterate through the array
        for (int val : nums) {
            if (val > maxVal) {
                // Found a new maximum value
                maxVal = val;
                count = 1; // Reset count to 1
            } else if (val == maxVal) {
                // Found another occurrence of the current maximum value
                count++;
            }
        }

        // Return the result as an array
        return new int[]{maxVal, count};
    }

    public static void main(String[] args) {
        int[] nums = {2, 7, 11, 8, 11, 8, 3, 11};
        int[] result = findMaxAndCount(nums);
        System.out.println("Max Value: " + result[0] + ", Count: " + result[1]);
    }
}

Complexity Analysis

The time complexity of this approach is O(n) because we only iterate through the array once. The space complexity is O(1) as we are using a constant amount of extra space regardless of the input size.

Comparison:

Edge Cases

Consider the following edge cases:

Handling Edge Cases:

The algorithm handles these cases correctly by initializing maxVal to the first element and updating it as necessary.

Testing

To test the solution comprehensively, consider the following test cases:

Testing Frameworks:

Use JUnit or any other Java testing framework to automate the testing process.

Thinking and Problem-Solving Tips

When approaching such problems:

Conclusion

In this blog post, we discussed how to find the maximum value and its number of occurrences in an array in O(n) time using Java. We explored the problem definition, approach, algorithm, code implementation, complexity analysis, edge cases, and testing. Understanding and solving such problems is crucial for efficient data processing and algorithmic thinking.

Additional Resources