Home > php教程 > PHP源码 > body text

鉴于eechen的虚心求教,写个冒泡算法

PHP中文网
Release: 2016-05-26 08:20:56
Original
932 people have browsed it

1. [代码]南湖船老大版PHP冒泡    

<?php
$array = array(7,1,2,8,4,5,6,0,22,9);
$len=count($array);
for ($i=0;$i<$len;$i++) {
  for ($j=$len-1;$j>$i;$j--) {
    if ($array[$j-1] > $array[$j]) {
      $tmp=$array[$j];
      $array[$j]=$array[$j-1];
      $array[$j-1]=$tmp;
    }
  }
}
Copy after login

2. [代码]eechen版PHP冒泡代码

<?php
//eechen版代码
$array = array(0,1,2,3,4,5,6,7,8,9);
for ($i=0;$i<count($array);$i++) {
  for ($j=0;$j<count($array)-1;$j++) {
    if ($array[$j] < $array[$j+1]) {
      $temp = $array[$j];
      $array[$j] = $array[$j+1];
      $array[$j+1] = $temp;
    }
  }
}
Copy after login

                   

                   

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template