Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/Python
/ get_right_child_idx
Method
get_right_child_idx
data_structures/heap/min_heap.py:48–49 ·
view source on GitHub ↗
(self, idx)
Source
from the content-addressed store, hash-verified
46
return
idx * 2 + 1
47
48
def
get_right_child_idx(self, idx):
49
return
idx * 2 + 2
50
51
def
get_value(self, key):
52
return
self.heap_dict[key]
Callers
1
sift_down
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected