Question
Use JAVA to create the class MaxHeap as specified below to support the operations of max heaps, heapsort, and priority queues. Use the exact class
Use JAVA to create the class MaxHeap as specified below to support the operations of max heaps, heapsort, and priority queues. Use the exact class and method names given below and use the default package. please also include the output.
public class MaxHeap {
//reference to the array
public int[] a;
//heapsize may be different from a.length
public int heapSize;
//construct a MaxHeap object
//reference the user supplied array
public MaxHeap(int [] a)
public void heapify(int i)
public void buildHeap()
//heapsort on a
public void sort()
//priority queue operations
public int maximum()
public int extractMax()
public void increaseKey(int i, int key)
public void insert (int key) }
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