Heim >Backend-Entwicklung >PHP-Tutorial >PHP实现快速排序算法_PHP教程

PHP实现快速排序算法_PHP教程

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 17:44:52888Durchsuche

function quicksort($seq) {

  if (count($seq) > 1) {

    $k = $seq[0];

    $x = array();

    $y = array();

    for ($i=1; $i

      if ($seq[$i]

        $x[] = $seq[$i];

      } else {

        $y[] = $seq[$i];

      }

    }

    $x = quicksort($x);

    $y = quicksort($y);

    return array_merge($x, array($k), $y);

  } else {

    return $seq;

  }

}

 

$arr = array(12,2,16,30,8,28,4,10,20,6,18);

print_r(quicksort($arr));

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478709.htmlTechArticle?php function quicksort($seq) { if (count($seq) 1) { $k = $seq[0]; $x = array(); $y = array(); for ($i=1; $icount($seq); $i++) { if ($seq[$i] = $k) { $x[] = $seq[$i]; } else { $y[]...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn