Entries from 2021-04-04 to 1 day

heapをPythonで

heapをPythonで heapの実装を一からPythonでやってみたよ Classを使ったものと使ってないものの二つ。 Classなしのもの # heap_last_index = 0 def insert(heap,obj): # heap_last_index += 1 heap.append(obj) # print(heap) i = len(heap)-1 while i > 0: …