Question: Write an Oz function which has at its input a list of integers and returns the maximum element. For example, {Max [3 ~2 0 4

Write an Oz function which has at its input a list of integers and returns the maximum element. For example, {Max [3 ~2 0 4 5 1]} should return 5. The optimal algorithm for determining the maximum element of a list with N elements is doing N-1comparisons. Write an Oz function which has at its input a list of integers and returns the first two maximum elements. For example, {Max [3 ~2 0 4 5 1]} should return 5 and 4. What is the optimal number of comparisons needed? Try to write an optimal version (for maximum mark).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!