PHP算法-冒泡排序_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > PHP算法-冒泡排序

PHP算法-冒泡排序

 2017/9/1 8:08:48  erntoo  程序员俱乐部  我要评论(0)
  • 摘要:functionbubble_sort($arr){$count=count($arr);if($count<=1){return$arr;}$times=$count-1;for($i=0;$i<$times;$i++){for($j=0;$j<$count-$i-1;$j++){//第一遍排序最后一个已经是最大值故$count-$iif($arr[$j]>$arr[$j+1]){$tmp=$arr[$j];$arr[$j]=$arr[$j+1]
  • 标签:PHP 算法 冒泡排序
class="php">function bubble_sort($arr)
{
    $count = count($arr);
    if ($count <= 1) {
        return $arr;
    }
    $times = $count - 1;
    for ($i = 0; $i < $times; $i ++) {
        for ($j = 0; $j < $count - $i - 1; $j ++) { // 第一遍排序最后一个已经是最大值 故$count-$i
            if ($arr[$j] > $arr[$j + 1]) {
                $tmp = $arr[$j];
                $arr[$j] = $arr[$j + 1];
                $arr[$j + 1] = $tmp;
            }
        }
    }
}

?

发表评论
用户名: 匿名