278 views
1 votes
1 votes

If in this question, if we were asked to find the nth smallest number, then what would have been the answer?

1 Answer

Related questions

79 votes
79 votes
10 answers
1
Disha asked Sep 19, 2014
31,690 views
In a min-heap with $n$ elements with the smallest element at the root, the $7^{th}$ smallest element can be found in time$\Theta (n \log n)$$\Theta (n)$$\Theta(\log n)$$\...
1 votes
1 votes
1 answer
3
shikharV asked Nov 15, 2015
1,215 views
In circular linked list, insertion of a node at the end involves pointer modification:(A) one(B) two(C) three(D) none
1 votes
1 votes
0 answers
4
Ajit J asked Dec 30, 2018
449 views
The complexity of this program? int fun1 (int n) { int i, j, k, p, q = 0; for (i = 1; i < n; ++i) { p = 0; for (j = n; j 1; j = j/2) { p++; for (k = 1; k < p; k = k * ...