Back to course home
0% completed
Solution: Find the Median of a Number Stream
Problem Statement
Design a class to calculate the median of a number stream. The class should have the following two methods:
insertNum(int num)
: stores the number in the classfindMedian()
: returns the median of all numbers inserted in the class
If the count of numbers inserted in the class is even, the median will be the average of the middle two numbers.
Example 1:
1. insertNum(3)
2. insertNum(1)
3. findMedian() -> output: 2
4. insertNum(5)
5. findMedian() -> output: 3
6. insertNum(4)
7. findMedian() -> output: 3.5
Constraints:
.....
.....
.....
Like the course? Get enrolled and start learning!