Advertisement
Guest User

Untitled

a guest
May 24th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. //Implementazione basata su array
  2. void max_heapify (struct heap_tree *t) {
  3. int i;
  4. for (i = (t->heap_size – 1)/2; i >= 0; i--)
  5. heapify(t, i);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement