Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/kunal-kushwaha/DSA-Bootcamp-Java
/ left
Method
left
lectures/24-heaps/code/heaps-1/Heap.java:21–23 ·
view source on GitHub ↗
(int index)
Source
from the content-addressed store, hash-verified
19
}
20
21
private
int
left(
int
index) {
22
return
index * 2 + 1;
23
}
24
25
private
int
right(
int
index) {
26
return
index * 2 + 2;
Callers
1
downheap
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected