Programming Assignment #5 Part 2

  1. This assignment is comprised of modifying your previous statistics program to compute statistical median. The median is the number in the exact middle of the data set if n is even, or the mean of the two middle numbers if n is odd. All objects and techniques necessary for this assignment have been (or will be) covered in class.
  2. 
    for data 9, 4, 7, 5, 5, 4, 4, 2
  3. The algorithm for median is roughly as follows:

Hints & Updates: