标签: python heap
如果堆放此$colaborators = Movie::where('title', $title)->with('collaborators')->get();
$colaborators = Movie::where('title', $title)->with('collaborators')->get();
返回堆的最小值,是否可以保证返回[(10,'Mike'),(20,'Jack'),(10,'Bob')]?
[(10,'Mike'),(20,'Jack'),(10,'Bob')]
答案 0 :(得分:2)
没有heapq不稳定。如examples of the documentation
heapq
这类似于sorted(iterable),但是与sorted()不同, 实施过程不稳定。