While looking for a hip-pocket sorting, algorithm, I found some sample code here and thought it was perfect the way it was.
function quicksort($seq) {
if(!count($seq)) return $seq;
$pivot= $seq[0];
$low = $high = array();
$length = count($seq);
for($i=1; $i < $length; $i++) {
if($seq[$i] <= $pivot) {
$low [] = $seq[$i];
} else {
$high[] = $seq[$i];
}
}
return array_merge(quicksort($low), array($pivot), quicksort($high));
}
So here's a working example of the above code.






Discussion
No comments for “PHP Quicksort Demonstration”