Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Develop Pseudo-code ( English-like ) for: In the Find Largest pseudo-code algorithm of Figure 2.14, listed below, if the numbers in our list were
1. Develop Pseudo-code (English-like) for:
In the Find Largest pseudo-code algorithm of Figure 2.14, listed below, if the numbers in our list were not unique and therefore the largest number could occur more than once. Modify the algorithm below to find all the occurrences of the largest number and their position in the list.
FIGURE 2.14 Get a value for n, the size of the list Get values for A, Ag,A, the list to be searched Set the value of largest so farto A Set the value of location to 1 Set the value of i to 2 While (is n) do If A, >largest so far then Set largest so far to A, Set locationto i Add 1 to the value ofi End of the loop Print out the values of largest so far and location Stop Algorithm to find the largest value in a list
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