首頁  >  文章  >  後端開發  >  php冒泡法排序程式碼

php冒泡法排序程式碼

WBOY
WBOY原創
2016-07-25 08:43:20895瀏覽
  1. function bubbleSort ($items) {
  2. $size = count($items);
  3. for ($i=0; $i<$size; $i ) {
  4. for ($j=0; $j<$size-1-$i; $j ) {
  5. if ($items[$j 1] < $items[$j]) {
  6. arraySwap($items, $j, $j 1);
  7. }
  8. }
  9. }
  10. return $items;
  11. }
  12. function arraySwap (&$arr, $index1, $index2) {
  13. list($arr[$index1], $arr[$index2]) = array($arr[$index2], $arr[$index1]);
  14. }
复制代码

php


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn