Question
( C++ LANGUAGE) In statistics, when a set of values is sorted in ascending or descending order, its median is the middle value. If the
( C++ LANGUAGE)
In statistics, when a set of values is sorted in ascending or descending order, its median is the middle value. If the set contains an even number of values, the median is the mean, or average, of the two middle values. Write a function that accepts as arguments the following:
a. An array of integers b. An integer that indicates the number of elements in the array
The function should determine the median of the array. This value should be returned as a double. (Assume the values in the array are already sorted.) Youll create two arrays: one with three elements (e.g. 1, 3, 7) and one with four elements (e.g. 2, 4, 5, 9). Demonstrate your pointer prowess by using pointer notation instead of array notation in this function. (In other words, you cannot access an array at any point using array[1], for example. It must be *(array + 1).)
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