Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Python
/ get_parent_idx
Method
get_parent_idx
data_structures/heap/min_heap.py:42–43 ·
view source on GitHub ↗
(self, idx)
Source
from the content-addressed store, hash-verified
40
return
self.get_value(key)
41
42
def
get_parent_idx(self, idx):
43
return
(idx - 1) // 2
44
45
def
get_left_child_idx(self, idx):
46
return
idx * 2 + 1
Callers
2
build_heap
Method · 0.95
sift_up
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected