Question
Write a method whose signature - public int maxOccurrences(int[] a, int num) The method will receive as a parameter an array sorted in ascending order
Write a method whose signature - public int maxOccurrences(int[] a, int num) The method will receive as a parameter an array sorted in ascending order of integers, and an additional number num. The method will return how many times the number num appears in the array. For example, for the following array: a = {1, 1, 3, 6, 6, 6, 6, 8}, if num = 1 the method will return 2 (because 1 appears twice in the array). If num = 6 the method will return 4. If num = 10 the method will return 0 (because 10 does not appear at all in the array). The method you write should have the best runtime efficiency. A method that is not effective will not be awarded full points. B. (5%) What is the runtime efficiency of the method you wrote? Explain your answer.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started