当前位置:Gxlcms > PHP教程 > php冒泡法排序代码

php冒泡法排序代码

时间:2021-07-01 10:21:17 帮助过:38人阅读

  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

人气教程排行