码迷,mamicode.com
首页 > 编程语言 > 详细

常用PHP算法

时间:2018-07-11 14:51:49      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:block   return   i++   script   esc   count   tle   pre   php   

1、冒泡排序

冒泡排序,

/**
     * @title  冒泡排序
     * @author lyj [author] [2018-07-11]
     * @param  [type] $arr [description]
     * @return [type]      [description]
     */
    function bubble_sort($arr) 
    {
        $n = count($arr);
        for ($i = 0; $i < $n - 1; $i++) {
            for ($j = $i + 1; $j < $n; $j++) {
                if ($arr[$j] < $arr[$i]) {
                    $temp = $arr[$i];
                    $arr[$i] = $arr[$j];
                    $arr[$j] = $temp;
                }
            }
        }
        return $arr;
    }

常用PHP算法

标签:block   return   i++   script   esc   count   tle   pre   php   

原文地址:https://www.cnblogs.com/liliyi/p/9293531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!