retagged by
18,460 views

7 Answers

0 votes
0 votes
quick sort algo:

T(n)=T(n-k)+T(k-1)+n

this is an unstable but efficient algorithm to sort large input array and it have only two phase divide and conquer phase ,combine phase is not present here,,,so C option is correct Divide and Conquer technique
0 votes
0 votes

ANSWER – C

Quicksort is a DIVIDE AND CONQUER TECHNIQUE. It works by selecting a 'pivot' element from the array and partitioning the other elements into two sub-arrays, according to whether they are less than or greater than the pivot.

Answer:

Related questions

30 votes
30 votes
7 answers
1
56 votes
56 votes
8 answers
2
Kathleen asked Oct 9, 2014
31,686 views
The average number of key comparisons required for a successful search for sequential search on $n$ items is$\frac{n}{2}$$\frac{n-1}{2}$$\frac{n+1}{2}$None of the above
26 votes
26 votes
7 answers
3
khushtak asked Feb 14, 2017
7,042 views
Consider the following table:$$\begin{array}{|l|}\hline \textbf {Algorithms} & \textbf{Design Paradigms } & \\\hline \text{P. Kruskal} & \text{i. Divide and Conquer} \...
21 votes
21 votes
2 answers
4
Kathleen asked Oct 8, 2014
5,024 views
Merge sort uses:Divide and conquer strategyBacktracking approachHeuristic searchGreedy approach