欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php冒泡法排序代码

程序员文章站 2024-02-12 20:25:16
...
  1. function bubbleSort ($items) {
  2. $size = count($items);
  3. for ($i=0; $i for ($j=0; $j if ($items[$j+1] arraySwap($items, $j, $j+1);
  4. }
  5. }
  6. }
  7. return $items;
  8. }
  9. function arraySwap (&$arr, $index1, $index2) {
  10. list($arr[$index1], $arr[$index2]) = array($arr[$index2], $arr[$index1]);
  11. }
复制代码

php