如何使用对象比较功能反转heapq堆中元素的顺序?

时间:2018-11-23 16:23:27

标签: python python-3.x heap python-3.6

首先,我读了此SO question,但实际上并没有包括我想要的方法。此外,将实际值取反不适用于我的用例。

Heapq文档:https://docs.python.org/3.6/library/heapq.html

假设我的堆中有一个数据类对象列表。只有a属性确定对象的顺序。

import heapq
from dataclasses import dataclass

@dataclass
class C:
    a: int
    b: int
    def __lt__(self, other):
        return self.a < other.a

l=[C(2,1),C(9,109),C(2,4),C(9,4)]

print(heapq.heappop(l)) # C(a=2, b=1)
print(heapq.heappop(l)) # C(a=2, b=4)
print(heapq.heappop(l)) # C(a=9, b=109)
print(heapq.heappop(l)) # C(a=9, b=4)

现在,我想倒置顺序。因此,我将行return self.a < other.a更改为return self.a > other.a。结果:

import heapq
from dataclasses import dataclass

@dataclass
class C:
    a: int
    b: int
    def __lt__(self, other):
        return self.a > other.a

l=[C(2,1),C(9,109),C(2,4),C(9,4)]

print(heapq.heappop(l)) # C(a=2, b=1)
print(heapq.heappop(l)) # C(a=9, b=109)
print(heapq.heappop(l)) # C(a=9, b=4)
print(heapq.heappop(l)) # C(a=2, b=4)

期望的结果应该是四个解决方案之一:

C(a=9, b=109)   C(a=9, b=4)      C(a=9, b=109)  C(a=9, b=4)    
 C(a=9, b=4)    C(a=9, b=109)    C(a=9, b=4)    C(a=9, b=109) 
 C(a=2, b=1)    C(a=2, b=1)      C(a=2, b=4)    C(a=2, b=4)  
 C(a=2, b=4)    C(a=2, b=4)      C(a=2, b=1)    C(a=2, b=1) 

heapq可能不会比较所有对象对,这可以解释奇怪的顺序。但是,仍然有可能获得相反的订单吗?

我是否必须提供更多的对象比较方法?

object.__lt__(self, other)
object.__le__(self, other)
object.__eq__(self, other)
object.__ne__(self, other)
object.__gt__(self, other)
object.__ge__(self, other)

如果您使用其他方法,请不要犹豫!

1 个答案:

答案 0 :(得分:3)

您需要使用heapifyl放入堆中

from heapq import heapify, heappop
from dataclasses import dataclass

@dataclass
class C:
    a: int
    b: int
    def __lt__(self, other):
        return self.a > other.a

l=[C(2,1),C(9,109),C(2,4),C(9,4)]

heapify(l)    

while l:
    print(heappop(l))

打印

C(a=9, b=4)
C(a=9, b=109)
C(a=2, b=1)
C(a=2, b=4)