Chapter 4: Q16E (page 136)
Section 4.5.2 describes a way of storing a complete binary tree of n nodes in an array indexed by 1, 2, K, n .
(a) Consider the node at position j of the array. Show that its parent is at position and its children are at 2 jand 2 j + 1 (if these numbers are ).
(b) What the corresponding indices when a complete d-ary tree is stored in an array?
Figure 4.16 shows pseudocode for a binary heap, modeled on an exposition by R.E. Tarjan. The heap is stored as an array , which is assumed to support two constant-time operations:
- , which returns the number of elements currently in the array;
- , which returns the position of an element within the array.
The latter can always be achieved by maintaining the values of as an auxiliary array.
(c) Show that themakeheapprocedure takesO(n) time when called on a set of elements. What is the worst-case input? (Hint:Start by showing that the running time is at most ).
(d) What needs to be changed to adapt this pseudocode to d-ary heaps?
Short Answer
(a)It can be shown that the parent position is and its children are at2 jand 2j + 1.
(b) The corresponding indices are j = (dp + 2 - d, dp + 1 - d, dp - d, K, dp, dp + 1 ).
(c) Yes, the makeheap takes the given time and the worst case input is reverse order array.
(d) The bubbleup and the minimum child processes can be changed slightly to adapt the pseudocode to d-ary heaps.