python中的堆(heapq)是否稳定?

时间:2019-03-15 16:55:50

标签: python heap

如果堆放此$colaborators = Movie::where('title', $title)->with('collaborators')->get();

返回堆的最小值,是否可以保证返回[(10,'Mike'),(20,'Jack'),(10,'Bob')]

1 个答案:

答案 0 :(得分:2)

没有heapq不稳定。如examples of the documentation

中所述
  

这类似于sorted(iterable),但是与sorted()不同,   实施过程不稳定。