plz help me in this Q
Write a menu driven C program which allows to:
Build a max heap from the user input (the input is an array of integers).
Insert a new element in the max heap.
Search a specific element in the max heap.
Delete an element from the max heap.
Sort the user input based on the max heap concept.
Merge two max heaps where the two max heaps are built from the user input.
Display a max heap in the screen as a tree representation.
Write a menu driven C program which allows to:
Build a max heap from the user input (the input is an array of integers).
Insert a new element in the max heap.
Search a specific element in the max heap.
Delete an element from the max heap.
Sort the user input based on the max heap concept.
Merge two max heaps where the two max heaps are built from the user input.
Display a max heap in the screen as a tree representation.
Comment