zoukankan      html  css  js  c++  java
  • LeetCode-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:

    [2,3,4] , the median is 3

    [2,3], the median is (2 + 3) / 2 = 2.5

    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:

    add(1)
    add(2)
    findMedian() -> 1.5
    add(3) 
    findMedian() -> 2
    

    Credits:
    Special thanks to @Louis1992 for adding this problem and creating all test cases.

    Solution:

     1 public class MedianFinder {
     2     // small part, max heap
     3     PriorityQueue<Integer> small = new PriorityQueue<Integer>((a, b) -> (b - a));
     4 
     5     // large part, min heap, contains median if odd number of numbers are added.
     6     PriorityQueue<Integer> large = new PriorityQueue<Integer>();
     7 
     8     // Adds a number into the data structure.
     9     public void addNum(int num) {
    10         if (large.isEmpty()) {
    11             large.add(num);
    12             return;
    13         }
    14 
    15         // total number is even
    16         if (small.size()==large.size()) {
    17             if (num >= small.peek()) {
    18                 // add it to large.
    19                 large.add(num);
    20             } else {
    21                 small.add(num);
    22                 large.add(small.poll());
    23             }
    24         } else {
    25             if (num > large.peek()) {
    26                 large.add(num);
    27                 small.add(large.poll());
    28             } else {
    29                 small.add(num);
    30             }
    31         }
    32     }
    33 
    34     // Returns the median of current data stream
    35     public double findMedian() {
    36         if (small.size()==large.size()){
    37             return (double) (small.peek()+large.peek())/2;
    38         } else {
    39             return (double) large.peek();
    40         }
    41     }
    42 
    43 };
    44 
    45 // Your MedianFinder object will be instantiated and called as such:
    46 // MedianFinder mf = new MedianFinder();
    47 // mf.addNum(1);
    48 // mf.findMedian();
  • 相关阅读:
    C#
    Excel 中大量图片如何快速导出? 转载自:http://www.zhihu.com/question/20800948
    IE的F12开发人员工具不显示 转载自:http://blog.csdn.net/longyulu/article/details/8749705
    firefox ie 比较 relative path
    fiddler save files
    selenium3加载浏览器
    Linux安装PHP
    客户端级别的渲染分析工具 dynaTrace
    前端性能分析:分析百度和sogou
    Linux vi的基本操作
  • 原文地址:https://www.cnblogs.com/lishiblog/p/5828262.html
Copyright © 2011-2022 走看看