295.Find Median From Data Stream
Median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value. So the median is the mean of the two middle value.
Examples:
1 | [2,3,4] , the median is 3 |
Design a data structure that supports the following two operations:
- void addNum(int num) - Add a integer number from the data stream to the data structure.
- double findMedian() - Return the median of all elements so far.
For example:
1 | add(1) |
O(n log n) time O(n) space solution
1 | public class MedianFinder { |