首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Python:使用Max-Heap和Min-Heap查找运行中位数

Python:使用Max-Heap和Min-Heap查找运行中位数
EN

Stack Overflow用户
提问于 2017-08-03 18:54:10
回答 1查看 6.2K关注 0票数 7

我正在尝试返回一系列流媒体数字的运行中位数。为此,我使用了max-heap (将值存储在序列的下半部分)和min-heap (将值存储在序列的上半部分)。

特别是,我使用的是来自heapq模块(https://docs.python.org/2/library/heapq.html)的Python (2.0)内置最小堆数据结构。要构建max-heap,我只需使用我需要推送到堆中的数字的负数。

我的Python代码如下:

代码语言:javascript
复制
import heapq

maxh = []
minh = []
vals=[1,2,3,4,5,6,7,8,9,10]
for val in vals:

    # Initialize the data-structure and insert/push the 1st streaming value
    if not maxh and not minh:
        heapq.heappush(maxh,-val)
        print float(val)
    elif maxh:

        # Insert/push the other streaming values
        if val>-maxh[0]:
            heapq.heappush(minh,val)
        elif val<-maxh[0]:
            heapq.heappush(maxh,-val)

        # Calculate the median
        if len(maxh)==len(minh):
            print float(-maxh[0]+minh[0])/2
        elif len(maxh)==len(minh)+1:
            print float(-maxh[0])
        elif len(minh)==len(maxh)+1:
            print float(minh[0])

        # If min-heap and max-heap grow unbalanced we rebalance them by
        # removing/popping one element from a heap and inserting/pushing
        # it into the other heap, then we calculate the median
        elif len(minh)==len(maxh)+2:
            heapq.heappush(maxh,-heapq.heappop(minh))
            print float(-maxh[0]+minh[0])/2
        elif len(maxh)==len(minh)+2:
            heapq.heappush(minh,-heapq.heappop(maxh))
            print float(-maxh[0]+minh[0])/2

下面是我为检查代码而构建的测试用例的完整列表:

代码语言:javascript
复制
vals=[1,2,3,4,5,6,7,8,9,10] # positive numbers, increasing series
vals=[10,9,8,7,6,5,4,3,2,1] # positive numbers, decreasing series
vals=[10,9,11,8,12,7,13,6,14,5] # positive numbers, jumping series (keeping
                                # heaps balanced)

vals=[-10,-9,-8,-7,-6,-5,-4,-3,-2,-1] # negative numbers, increasing series
vals=[-1,-2,-3,-4,-5,-6,-7,-8,-9,-10] # negative numbers, decreasing series
vals=[-10,-9,-11,-8,-12,-7,-13,-6,-14,-5] # negative numbers
                                          # jumping series (keeping heaps
                                          # balanced)

vals=[-5,-4,-3,-2,-1,0,1,2,3,4,5] # mixed positive-negative numbers,
                                  # increasing series
vals=[5,4,3,2,1,0,-1,-2,-3,-4,-5] # mixed positive-negative numbers,
                                  # decreasing series
vals=[0,-1,1,-2,2,-3,3,-4,4,-5,5] # mixed positive-negative numbers,
                                  # jumping series (keeping heaps balanced)

我的代码对我来说似乎没问题,但我不能通过10个测试用例中的4个(https://www.hackerrank.com/challenges/ctci-find-the-running-median/problem)。

你有什么提示吗?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-08-03 23:46:09

问题出在这里:

代码语言:javascript
复制
    # Insert/push the other streaming values
    if val>-maxh[0]:
        heapq.heappush(minh,val)
    elif val<-maxh[0]:
        heapq.heappush(maxh,-val)

如果为val == maxh[0],则永远不会将该项推送到任何一个堆上。您应该能够使用测试用例[1,1,2]来揭示错误。

一个简单的解决方法是:

代码语言:javascript
复制
    # Insert/push the other streaming values
    if val >= -maxh[0]:
        heapq.heappush(minh,val)
    else
        heapq.heappush(maxh,-val)
票数 7
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/45482156

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档