Convert Min Heap to Max Heap Problem Statement
Given an array representation of a min-heap of size 'n', your task is to convert this array into a max-heap.
Input:
The first line of input contains an integer ‘T’ denoting the number of test cases.
The next 2*T lines represent test cases.
The first line contains a single integer ‘n’ denoting the size of the array.
The next line contains ‘n’ space-separated integers denoting the min-heap.
Output:
Return any possible max-heap for the given input min-heap.
Output for each query is printed in a separate line.
Example:
Input:
min-heap = [1,2,3,6,7,8]
Output:
max-heap = [8,7,3,6,2,1]
Constraints:
- 1 <= T <= 10
- 1 <= n <= 5000
- 1 <= arr[i] <= 105
- Time Limit: 1 sec
Note:
The output max-heap will be checked from the given function: if the output array is a max-heap, it will return true; otherwise, it will return false.

AnswerBot
4mo
Convert a given array representing a min-heap into a max-heap.
Iterate through the array and swap parent nodes with their children to convert min-heap to max-heap.
Maintain the heap property by comparin...read more
Help your peers!
Add answer anonymously...
Travclan Technology India Technical Trainee interview questions & answers
A Technical Trainee was asked Q. Snake and Ladder Problem Statement Given a 'Snake and Ladder' board with N rows ...read more
A Technical Trainee was asked Q. Convert Min Heap to Max Heap Problem Statement Given an array representation of ...read more
A Technical Trainee was asked Q. Minimum Cost to Destination You are given an NxM matrix consisting of '0's and '...read more
Popular interview questions of Technical Trainee
A Technical Trainee was asked Q1. Snake and Ladder Problem Statement Given a 'Snake and Ladder' board with N rows ...read more
A Technical Trainee was asked Q2. Convert Min Heap to Max Heap Problem Statement Given an array representation of ...read more
A Technical Trainee was asked Q3. Minimum Cost to Destination You are given an NxM matrix consisting of '0's and '...read more
>
Travclan Technology India Technical Trainee Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

