LeetCode-in-All

295. Find Median from Data Stream

Hard

The median is the middle value in an ordered integer list. If the size of the list is even, there is no middle value and the median is the mean of the two middle values.

Implement the MedianFinder class:

Example 1:

Input

["MedianFinder", "addNum", "addNum", "findMedian", "addNum", "findMedian"]
[[], [1], [2], [], [3], []]

Output: [null, null, null, 1.5, null, 2.0]

Explanation:

MedianFinder medianFinder = new MedianFinder();
medianFinder.addNum(1); // arr = [1]
medianFinder.addNum(2); // arr = [1, 2]
medianFinder.findMedian(); // return 1.5 (i.e., (1 + 2) / 2)
medianFinder.addNum(3); // arr[1, 2, 3]
medianFinder.findMedian(); // return 2.0 

Constraints:

Follow up:

Solution

class MedianFinder {
    private $maxHeap;
    private $minHeap;

    function __construct() {
        $this->maxHeap = new \SplMaxHeap();
        $this->minHeap = new \SplMinHeap();
    }

    /**
     * @param Integer $num
     * @return NULL
     */
    public function addNum($num) {
        if ($this->maxHeap->isEmpty() || $this->maxHeap->top() > $num) {
            $this->maxHeap->insert($num);
        } else {
            $this->minHeap->insert($num);
        }
        if (abs($this->maxHeap->count() - $this->minHeap->count()) > 1) {
            $this->balance($this->maxHeap, $this->minHeap);
        }
    }

    function balance($maxHeap, $minHeap) {
        $large = $maxHeap->count() > $minHeap->count() ? $maxHeap : $minHeap;
        $small = $maxHeap->count() > $minHeap->count() ? $minHeap : $maxHeap;
        $small->insert($large->extract());
    }

    /**
     * @return Float
     */
    public function findMedian() {
        $large = $this->maxHeap->count() > $this->minHeap->count() ? $this->maxHeap : $this->minHeap;
        $small = $this->maxHeap->count() > $this->minHeap->count() ? $this->minHeap : $this->maxHeap;
        if ($large->count() == $small->count()) {
            return ($large->top() + $small->top()) / 2.0;
        } else {
            return $large->top();
        }
    }
}
/**
 * Your MedianFinder object will be instantiated and called as such:
 * $obj = MedianFinder();
 * $obj->addNum($num);
 * $ret_2 = $obj->findMedian();
 */