Skip to content

Instantly share code, notes, and snippets.

@inf1111
inf1111 / quicksort.php
Created October 22, 2021 14:22 — forked from wangshijun/quicksort.php
php: quick sort algorithm implemented in php
<?php
$data = array(55,41,59,26,53,58,97,93);
quicksort(0, sizeof($data)-1);
function quicksort($lower, $upper) {
global $data;
if ($lower >= $upper) {
return;