- function bubbleSort ($items) {
- $size = count($items);
- for ($i=0; $i for ($j=0; $j if ($items[$j+1] arraySwap($items, $j, $j+1);
- }
- }
- }
- return $items;
- }
- function arraySwap (&$arr, $index1, $index2) {
- list($arr[$index1], $arr[$index2]) = array($arr[$index2], $arr[$index1]);
- }
复制代码
|