MCPcopy Index your code
hub / github.com/kunal-kushwaha/DSA-Bootcamp-Java / left

Method left

lectures/27-huffman-coding/code/Heap.java:80–82  ·  view source on GitHub ↗
(int index)

Source from the content-addressed store, hash-verified

78 }
79
80 private int left(int index){
81 return index * 2 + 1;
82 }
83
84 private int right(int index){
85 return index * 2 + 2;

Callers 1

downheapMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected