871 views
0 votes
0 votes
suppose Merge sort algorithm takes 2 sec to sort a set of 64 keys then how much time will it take to sort a set of 512 keys ??

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
2
0 votes
0 votes
1 answer
3
NeelParekh asked Jul 27, 2023
277 views
If an array is split in the form of increasing and decreasing order then what is TC to find minimum element in the array?
0 votes
0 votes
1 answer
4
Sachdev aprajita asked May 23, 2019
432 views
Finding the running time of the following algorithm.$Procedure$ $A(n)$ $\textrm{ if (n}<=\textrm{2) then return 1 ;}$ $else$ $Return(A(\left \lceil \sqrt{n} \right ...