MCPcopy Index your code
hub / github.com/OmkarPathak/pygorithm / parent_idx

Method parent_idx

pygorithm/data_structures/heap.py:17–21  ·  view source on GitHub ↗

retrieve the parent

(idx)

Source from the content-addressed store, hash-verified

15
16 @staticmethod
17 def parent_idx(idx):
18 """
19 retrieve the parent
20 """
21 return idx // 2
22
23 @staticmethod
24 def left_child_idx(idx):

Callers 1

heapify_upMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected