Skip to content

Instantly share code, notes, and snippets.

@Israel-Miles
Created September 11, 2021 20:55
Show Gist options
  • Save Israel-Miles/419f009c510392256b326544268e85b0 to your computer and use it in GitHub Desktop.
Save Israel-Miles/419f009c510392256b326544268e85b0 to your computer and use it in GitHub Desktop.
func buildHeap(heap []int) {
n := len(heap)
startIdx := n / 2 - 1
for i := startIdx; i >= 0; i-- {
heapify(&heap, i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment