Bubble sort with PHP (small to Large)

Source: Internet
Author: User

<? php    //array element values from small to large sort      $arr =array (1,42,0,3,15,7,19,26);     //defines an intermediate variable      $temp =0;    //the number of outer loops      for ($i =0; $i <count ($arr)-1; $i + +) {        // Two array element values adjacent to the right of the inner layer are compared         for ($j =0; $j <count ($arr)-$i; $j + +) {             //when the last array element value is greater than the previous array's original value              if ($arr [$j]> $arr [$j +1]) {             //array Element Exchange                  $temp = $arr [$j];                 $arr [$j]= $arr [$j +1];                 $arr [$j +1]= $temp;              }            }        // The number of iterations of the outer array is the cause of the---count ($arr) -1        //-1 (the comparison of array element values is two comparisons          //3 array elements compared 2 times         echo  " This is the first ". ($i + 1). " Results of the second comparison ";        echo " <pre/> ";         print_r ($arr);        echo  "<pre/>" ;       }    echo  " 


Bubble sort with PHP (small to Large)

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.