Question: In this problem, you will write a program that computes the median of a set of numbers ( median 1 . cc ) . The
In this problem, you will write a program that computes the median of a set of numbers
mediancc The median of a list of number is computed by first sorting the list in
ascending order, and choosing the number in the middle. If there is an even number
of numbers, the median is the average of the two numbers in the middle.
For example, the median of the list
is while the median of the list
is
a Write the function:
void sortint A int n;
which sorts the array A of n elements in ascending order. You may use any sorting
algorithm you learned from CPSC
b Write the function:
double medianint A int n;
which computes the median of the array A of n elements. It is acceptable if the
function rearranges the elements of A
c Write the main program which asks the user to enter n allocates an array of n
elements, and displays the median. The program should repeat as long as n
When n exit the program. Be sure that there is no memory leak.
Sample session:
Enter the size of the list to quit:
Enter element :
Enter element :
Enter element :
Enter element :
Enter element :
Enter element :
The median is
Enter the size of the list to quit:
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
