Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning ASP.NET 4.5 Databases

Authors: Sandeep Chanda, Damien Foggon

3rd Edition

1430243805, 978-1430243809

More Books

Students also viewed these Databases questions

Question

How wide are Salary Structure Ranges?

Answered: 1 week ago