Home  >  Article  >  Backend Development  >  Quick sort recursive version php implementation

Quick sort recursive version php implementation

不言
不言Original
2018-04-16 10:25:531037browse

The content of this article is about the quick sorting recursive version of PHP implementation. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it.

Start reviewing the algorithm today, even the most familiar I can’t even write out the quick queue, I’m so embarrassed, I’ll post the code for future reference

function qSort(array &$a, $low, $high)
{   
    if($low >= $high) {
        return;
    }
    $index = partition($a,$low,$high);
    qSort($a,$low,$index-1);
    qSort($a,$index+1,$high);
}
//元素相互赋值比交换效率
function partition(array &$a, $low, $high)
{
    $temp = $a[$low];
    while($low < $high) {
        while($low < $high && $a[$high] >= $temp) { 
            --$high;
        }   
        $a[$low] = $a[$high];
        while($low < $high && $a[$low] <= $temp) {
            ++$low;
        }   
        $a[$high] = $a[$low];
    }   
    $a[$low] = $temp;
    return $low;
}

$a = [0,20,7,-1,6,2,6,2,8, 9,0,1];
qSort($a, 0, count($a) -1);

var_dump(implode(',', $a));

Result display: -1,0,0,1,2,2,6,6,7,8,9,20

Related recommendations:

Code Detailed explanation of how JavaScript implements quick sort

php algorithm quick sort

The above is the detailed content of Quick sort recursive version php implementation. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:About php operating mysqlNext article:About php operating mysql