Skip to content

Instantly share code, notes, and snippets.

@nerohoop
Created January 8, 2018 03:20
Show Gist options
  • Save nerohoop/200a610b869c24cc71fbf8116dc761d1 to your computer and use it in GitHub Desktop.
Save nerohoop/200a610b869c24cc71fbf8116dc761d1 to your computer and use it in GitHub Desktop.
Build_Heap(A)
heapsize := size(A);
for i := floor(heapsize/2) downto 1
do Heapify(A, i);
end for
End
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment