Operational Objectives: Create a project that computes the mean and median of a sequence of integers received via standard input. Deliverables: 3 files: stats.h, stats.cpp, main.cpp Note that these files constitute a self-contained project.

Background

Given a finite collection of n numbers:

  • The mean is the sum of the numbers divided by n, and
  • The median is the middle value (in case n is odd) or the average of the two middle values (in case n is even).

Note that to find the median of a collection of data, it is convenient to first sort the data, that is, put the data in increasing (or non-decreasing) order. Then the median is just the middle datum in the sorted sequence (or the average of the two middle data, if there are an even number). One of the more intuitive sort algorithms is called Insertion Sort, which operates on an array a[0..n-1] of elements. The idea is to "insert" the value of a[i] into the sub-array a[0..i-1] at the largest possible index that results in the expanded sub-array a[0..i] sorted. We insert at the highest possible index in order not to place the value ahead of any previously inserted elements with the same value. The subarray a[0..i-1] is assumed to be sorted at the beginning of each insertion step. The base case consists of a one-element array a[0..0], which is always sorted. Here is a "pseudocode" description of the algorithm:

for (i = 1; i < n; ++i)
t = a[i]; // remember the value in a[i]
starting at j = i
while j > 0 and t < a[j - 1]
copy a[j-1] to a[j]
j = j - 1
end while // now we have t >= a[j]
copy t into a[j]
end for

The inner loop copies all elements in a[0..i-1] up one index until the correct place for t is found. Then put t in that place.

The number of integers input by the user is not known in advance, except that it will not exceed 100. Numbers are input through standard input, either from keyboard or file re-direct. The program should read numbers until a non-digit or end-of-file is encountered or 100 numbers have been read. Once the input numbers have been read, the program should calculate the mean and median and then report these values to standard output. The source code should be structured as follows:

Implement separate functions with the following prototypes:

  • float Mean (const int* array, size_t size); // calculates mean of data in array
  • float Median (int* array, size_t size); // calculates median of data in array
  • void Sort (int* array, size_t size); // sorts the data in array
  • I/O is handled by function main(); no other functions should do any I/O
  • Function main() calls Mean() and Median()
  • Function Median() calls Sort()

The source code should be organized as follows:

  • Prototypes for Mean, Median, and Sort should be in file stats.h
  • Implementations for Mean, Median, and Sort should be in file stats.cpp
  • Function main should be in file main.cpp

The Sort() function should implement the Insertion Sort algorithm

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.