Question: Consider the following method. Describe the asymptotic execution time as a function of n using big-O notation: public int find Middlelndex (int[] numbers) throws Exception

Consider the following method. Describe the asymptotic execution time as a function of n using big-O notation: public int find Middlelndex (int[] numbers) throws Exception { int endIndex = numbers.length - 1; int startIndex = 0; int sumLeft = 0; int sumRight = 0; while (true) { if (sumLeft > sumRight) { sumRight += numbers (endindex--); } else { sumLeft += numbers[startIndex++); } if (startIndex > endIndex) { if (sumLeft == sumRight) { break; } else { throw new Exception ("Please pass proper array"); 3 } return endindex: }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
