Question: Write an application which includes and algorithm that takes an array of any size, selects the high and low integer from the array of integers

Write an application which includes and algorithm that takes an array of any size, selects the high and low integer from the array of integers with each pass and builds a new array of integers by inserting the high and low selection with each pass. Your output should show the original array of integers and the output of each pass on a new line.

Note: You can assume all integers are positive, but your code must work for an even and odd number of integers and an array of size from 5 to 30.

Example Output:  

Input Array: [ 42 , 24, 7, 13, 36, 52]

Pass 1: [7, 52] Pass 2: [7, 13, 42, 52] Pass 3: [7, 13, 24, 36, 42, 52]

I already got a plan for writing my program. Can someone show me how the UML diagram, psedo code, and flowchart would look for this?

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!