美文网首页
PHP-冒泡排序

PHP-冒泡排序

作者: followyounger1 | 来源:发表于2017-08-09 20:31 被阅读30次

    <?php
    $arr = [4,9,8,6,7,3,2,1];
    function bubbling($str){
    $c = count($str);
    for ($i=0; $i < $c; $i++) {
    # code...
    for ($j=$i; $j < $c; $j++) {
    # code...
    if ($str[$j]>$str[$j+1]) {
    # code...
    $temp = $str[$j];
    $str[$j] = $str[$j+1];
    $str[$j+1]=$temp;
    }
    }
    }
    return $str;
    }
    print_r(bubbling($arr));

    ?>

    相关文章

      网友评论

          本文标题:PHP-冒泡排序

          本文链接:https://www.haomeiwen.com/subject/lfnqrxtx.html