about Randomized-select algorithm
Posted
by matin1234
on Stack Overflow
See other posts from Stack Overflow
or by matin1234
Published on 2010-06-18T07:02:06Z
Indexed on
2010/06/18
7:33 UTC
Read the original article
Hit count: 593
java
|datastructures
Hi
I have this array A = <3,2,9,0,7,5,4,8,6,1>
and I want to write all its worst partitions are these correct?thanks
a1 = <0,2,9,3,7,5,4,8,6,1>
a2 = <1,9,3,7,5,4,8,6,2>
a3 = <2,3,7,5,4,8,6,9>
a4 = <3,7,5,4,8,6,9>
a5 = <4,5,7,8,6,9>
a6 = <5,7,8,6,9>
a7 = <6,8,7,9>
a8 = <7,8,9>
a9 = <8,9>
a10 = <9>
© Stack Overflow or respective owner