Find Median from a Data Stream
Try to solve the Find Median from Data Stream problem.
Statement
Create a data structure that can store a list of integers that can change in size over time and find the median from this dynamically growing list in constant time,
Implement a class, MedianOfStream, which should support the following operations: ...