Bubble algorithm gives 0~9 random n-bit number sorting

Source: Internet
Author: User

<?php

Generates a random number of 5-bit 0~9
function Getrand ($begin =0, $end =9, $limit =5) {
$rand _array=range ($begin, $end);
Shuffle ($rand _array);//Call out-of-box array random permutation function
Return Array_slice ($rand _array,0, $limit);//$limit before intercept

}

$arr = Getrand ();
$str = Implode (' ', $arr);
Echo $str;

Using bubbling algorithm to sort from small to large

Calculates the length of the array;
$length =count ($arr);
Outer Loop n-1
for ($n =0; $n < $length-1; $n + +) {
Inner-layer Cyclic n-i-1
for ($i =0; $i < $length-$n-1; $i + +) {
Determine the size of array elements, swap locations, and achieve a large order from small
if ($arr [$i]> $arr [$i +1]) {
$temp = $arr [$i +1];
$arr [$i +1]= $arr [$i];
$arr [$i]= $temp;
}
}
}

$str = Implode (' ', $arr);

Echo $str;

Bubble algorithm gives 0~9 random n-bit number sorting

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.