php冒泡法排序代码
时间:2021-07-01 10:21:17
帮助过:38人阅读
- function bubbleSort ($items) {
- $size = count($items);
- for ($i=0; $i<$size; $i++) {
- for ($j=0; $j<$size-1-$i; $j++) {
- if ($items[$j+1] < $items[$j]) {
- arraySwap($items, $j, $j+1);
- }
- }
- }
- return $items;
- }
- function arraySwap (&$arr, $index1, $index2) {
- list($arr[$index1], $arr[$index2]) = array($arr[$index2], $arr[$index1]);
- }
|
php