- 関数 bubbleSort ($items) {
- $size = count($items);
- for ($i=0; $i for ($j=0; $j if ($items[$j+ 1] < $items[$j]) {
- arraySwap($items, $j, $j+1);
- }
- }
- }
- $items を返します。
- }
- function arraySwap (&$arr, $index1, $index2) {
- list($arr[$index1], $arr[$index2]) = array($arr[$index2], $arr[$index1] );
- }
复制代
|