Question
Sorting (a) For a given input array A : < 4 a , 1, 5, 8, 2, 6, 4 b , 9, 10 >, what
Sorting
(a) For a given input array A : < 4a, 1, 5, 8, 2, 6, 4b, 9, 10 >, what is the sequence of numbers in A after calling Build-Max-Heap(A) ? (please show the intermediate trees).
(b)For a given input array A : < 4a, 11, 5, 10, 2, 6, 4b, 9, 7 >, what is the sequence of numbers in A after the first partition (by calling Partition(A, 1, 9))? Note that 1 and 9 in Partition(A, 1, 9) function call are array indexes.
(c)By using the Max-Heap data structure to implement a priority queue, some applications may need to change the data (priority) of a specific node i. That is, given an index i, change the priority of node i to a new priority t. Please write a pseudocode for this procedure.
Max-Heap-update(A, i, t)
{
}
(d) Please describe how to use a priority queue to implement a queue abstract
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started