Redirected
in Algorithms retagged by
4,057 views
1 vote
1 vote
Consider an array consisting of the following elements in unsorted order (placed randomly) but 60 as pivot element

60 80  15 95 7  12 35 90 55

Quicksort partition algorithm is applied by choosing first element as pivot element . How many total number of arrangement of array integers is possible preserving the effect of first pass of partition algorithm
in Algorithms retagged by
4.1k views

3 Comments

Answer should be 3!*3! = 36.
0
0
what is the meaning of "the effect of first pass of quicksort algorithm is preserved" ?
1
1
8!/5!3!
0
0

3 Answers

6 votes
6 votes

Answer : $5! \times 3! = 720$ 

What is the Effect of the Partition Algorithm when Pivot is $P$ : After the Partition algorithm, $P$ will go to its correct position and All the elements less than or equal to $P$ will go to one side and all the elements greater than $P$ will go to the other side.

Quicksort partition algorithm is applied by choosing first element as pivot element. So, After the First Pass of Partition algorithm (i.e. One time Partition Algorithm), Our Array will look like the following :

$\left \{ 15,7,12,35,55 \right \} \,\,60\,\,\left \{ 80,95,90 \right \}$  

i.e. After the Partition algorithm, $60$ will go to its correct place and all the numbers less than or equal to $60$ will go to the one side and all the numbers greater than $60$ will go to the other side.

So, Now, total number of arrangements of array integers  possible preserving the effect of first pass of partition algorithm will be : $5! \times 3!$ as All the five elements that are less then $60$ can arrange in any order and all the three elements that are greater than $60$ can arrange in any order ---- and the effect of partition algorithm will still preserve.

2 Comments

Thanku ....for the explanation....
0
0
Nice explaination deepakk
0
0
1 vote
1 vote
First Pass places the pivot element at the correct position. So after first pass array looks like

[50, 35, 33, 60, 100, 72, 85].

60 is going to be intact at its place.

We can arrange 50, 35, 33 in 3! ways without hurting the information of the first pass, which is all elements before pivot is smaller, similarly for [100, 72, 85].

Thus total ways are 3!*3! = 36.

1 comment

Why this? isn't it 3!+3! ?

[50, 35, 33, 60, 100, 72, 85].

Because we can't shift left elements to right of 60 neither right element to left of 60.
0
0
0 votes
0 votes

Correct answer is 1