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

数组排序

时间:2018-09-15 14:33:19      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:data   console   ext   .so   func   int   顺序   ret   包含   

js 

function randomsort() {
   return Math.random()>.5 ? -1 : 1;
}
var arr = [1, 2, 3, 4, 5];
console.log(arr.sort(randomsort));

 

php

array_rand(array,number)
array 必需。规定数组。
number 可选。规定返回多少随机键名。

 

 

shuffle()函数把数组中的元素按随机顺序重新排列。若成功则返回 TRUE,若失败则返回 FALSE。

注释:本函数为数组中的单元赋予新的键名。这将删除原有的键名而不仅是重新排序。

 

function unique_rand($min, $max)
{
    //  不包含最大值
    $return = array();
    for($i=$min;$i<$max;$i++)
    {
        $return[] = $i;
    }
    shuffle($return);
    return $return;
}

 

 

 

 

 

 

数组排序

标签:data   console   ext   .so   func   int   顺序   ret   包含   

原文地址:https://www.cnblogs.com/xuey/p/8051659.html

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