167 views
0 votes
0 votes

solution is provided that 

my doubt is can we find 3rd or 4th (and so on) smallest in 3 or 4 comparison in min heap.

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
Huzaifa0111 asked Aug 27, 2023
157 views
0 votes
0 votes
0 answers
3
Ray Tomlinson asked Aug 9, 2023
268 views
what they want to tell and it is true or false?
0 votes
0 votes
1 answer
4
Ray Tomlinson asked Aug 9, 2023
425 views
How many times is the comparison $i >= n$ performed in the following program?int i = 200 n = 80; main() { while (i >= n) { i = i - 2 n = n + 1 } }