1.冒泡排序
$tarr = [4,2,3,1,5,0]; function sort_arr($arr){ for($i=0; $i<count($arr);$i++) { for($j=$i+1;$j<count($arr);$j++){ if($arr[$i]>$arr[$j]){ $temp = $arr[$i]; $arr[$i] = $arr[$j]; $arr[$j] = $temp; } } } return $arr; } $res = sort_arr($tarr); print_r($res);
标签:sort,arr,temp,res,常见,几种,tarr,排序 From: https://www.cnblogs.com/wanglijun/p/17282307.html