Array random Sort Shuffle

Source: Internet
Author: User
Tags array length shuffle

1,functionRandomsort (arr, newArr) {//if the length value of arr in the original array equals 1 o'clock, the original array has only one value and its key value is 0//also push this value to the new array newarrif(Arr.length = = 1) {Newarr.push (arr[0]); returnNEWARR;//equivalent to recursive exit    }//Take out a random number based on the original array length    varRandom = Math.ceil (Math.random () * arr.length)-1; //push a random value from the original array to the new array newarr    Newarr.push (Arr[random]); //Corresponding array entry for delete original array arrArr.splice (random,1); returnRandomsort (arr, NEWARR); }2.functionRandomsort (A, b) {returnMath.random () > 0.5? -1:1; }vararr = [1,2,3,4,5,6,7,8,9]; Arr.sort (randomsort);

Array random Sort Shuffle

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.