vote up -8 vote down star

I am interested in knowing how a "quicksort" works.

Additional questions:

  • What are its advantages and disadvantages?
  • What are some good use cases for this algorithm?
  • What implementations are in common use, and should I prefer them or write my own?
flag

63% accept rate
There are so many places on the Internet to find such a algorithm. – cdmckay Feb 27 at 19:22
I would really love to answer this question but coincidentally I've lost my backup files too! – DrJokepu Feb 27 at 19:26
1  
Please don't say "plz". – chaos Feb 27 at 19:26
I've rewritten this from the ground up. Reopen if you find it useful this way... – dmckee Feb 27 at 20:18
I don't think that's really appropriate. Completely changing the intent and nature of the question? Bit much. And, this being non-CW, it leads to the OP garnering utterly undeserved reputation. – chaos Feb 27 at 20:22
show 3 more comments

closed as too localized by Harper Shelby, Greg Rogers, chaos, David, dmckee Feb 27 at 20:05

2 Answers

vote up 7 vote down
#include <algorithm>

std::sort?

Or:

#include <stdlib.h>

qsort?
link|flag
sorting an array of elements – Mobin Feb 27 at 19:22
actually i need the code for the algorithm i need to manipulate it – Mobin Feb 27 at 19:24
Most implementations of std::sort are actually introsort. – CTT Feb 27 at 19:24
1  
"I need to manipulate it" = "I need the code so I don't get an F" – TheTXI Feb 27 at 19:32
Fo shizzle, ma @TXizzle. – chaos Feb 27 at 19:55
vote up 4 vote down

Besides the standard C and C++ library implementations that MSN points out, there is also a Wikipedia entry with psuedo-code as well as C implementations.

Quicksort (Wikipedia)

link|flag
thnkx sir for the help – Mobin Feb 27 at 19:27

Not the answer you're looking for? Browse other questions tagged or ask your own question.