Skip to content

Instantly share code, notes, and snippets.

@barockok
barockok / sorting.php
Created October 1, 2011 19:05
Sorting algorithm in PHP
function quickSort($array)
{
if (!$length = count($array)) {
return $array;
}
$k = $array[0];
$x = $y = array();
for ($i=1;$i<$length;$i++) {