subject

Consider a priority queue has been implemented as a binary max heap and is stored as an array.

80 18 40 13 25

array representation of the heap:

index 0 1 2 3 4 5 6 7 8 9
value 80 18 40 13 5 25 1 2 9
note that -

0th position is left empty

left child of a[ i ] can be found at a[ 2 * i ].

right child of a[ i ] can be found at a[ 2 * i + 1 ].

the parent of a[ i ] is at a[ i / 2 ].

now a pop-heap operation is called on this data structure. what will be the array after this pop?

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 19:00
If your accelerator suddenly gets stuck what should you do
Answers: 2
question
Computers and Technology, 23.06.2019 10:00
How do i delete my account on this because i didn't read this agreements and also i put age at xd
Answers: 1
question
Computers and Technology, 23.06.2019 13:30
Jace needs to answer a question on square roots to win a quiz. how can he use a spreadsheet to find the square root of 786? a. use the functions round and count b. create a table and chart c. use the function sqrt d. use the function now
Answers: 3
question
Computers and Technology, 23.06.2019 18:00
Ramona enjoys her job because she is able to kids in an after school program. the work value ramona feels strongest about is a. leadership b. risk c. independence d. work with people select the best answer from the choices provided a b c d
Answers: 1
You know the right answer?
Consider a priority queue has been implemented as a binary max heap and is stored as an array.
...
Questions
Questions on the website: 13722359