Recent questions tagged divide-and-conquer

1 votes
1 answer
8
T(n)=T(n/5)+T(7n/10)+ana: constantwhat will be the time complexity of the above recurrence relation??Please share the approach for this kind of recurrence relation
0 votes
0 answers
9
Consider all the elements of an array is same and choosing pivot such a way that divides array into two equal parts. Then will it behave like QuickSort best case or worst...
0 votes
3 answers
13
In quick sort for sorting of n Numbers, the 75th greatest Element is selected as pivot using $O(n^2)$ time complexity algorithm than what is the worst case time complexit...
0 votes
0 answers
17
0 votes
0 answers
18
how many terms will be computed to determine the value of C(10,8) using divide and conquer algo ?88899091
0 votes
0 answers
19
how many terms will be computed to determine the value of 10C8 using divide and conquer strategy and dynamic programming?for divide and conquer ans is 89 how to compute p...
0 votes
3 answers
20
0 votes
2 answers
21
What is the time complexity of calculating power of an element using DAC?
0 votes
1 answer
22
1 votes
2 answers
23
0 votes
1 answer
25
1 votes
1 answer
28
suppose merge sort takes 2 sec to sort a set of 64 keys then how much time will take to sort a set of 512 keys?here, ans is 24 sec how it is plz explain me.