Home  >  Article  >  Backend Development  >  PHP implements insertion sort, PHP implements sorting_PHP tutorial

PHP implements insertion sort, PHP implements sorting_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:59:36907browse

php implements insertion sort, php implements sorting

<&#63;php
/**
 * 插入排序
 * @param Array $a 无序集合
 * @return Array 有序集合
 */
function insertSort($a) {
  $temp;
  $i;
  $j;
  $size_a = count($a);
  # 从第二个元素开始
  for ($i = 1; $i < $size_a; $i++) {      
    if ($a[$i] < $a[$i-1]) {     
      $j = $i; # 保存当前元素的位置
      $temp = $a[$i]; # 当前元素的值  
 
      # 比较左边的元素,如果找到比自己更小的,向右移动元素,否则插入元素到当前位置
      while($j>0 && $temp<$a[$j-1]) {
        $a[$j] = $a[$j-1];
        $j--;
      }
       
      # 插入元素
      $a[$j] = $temp;
    }
  }
  return $a;
}
/**
 * 获取随机数
 * @param Integer $size 数量
 * @return Integer
 */
function randomNumber($size = 10) {
  $rand = array();
  srand(time(NULL));
  for ($i = 0; $i < $size; $i++) {
    array_push($rand, mt_rand(0,1000));   
  }
  return $rand;
}
 
$a = randomNumber();
echo sprintf("Unsorted list %s\n", implode(" ", $a));
echo sprintf("Sorted list %s\n", implode(" ", insertSort($a)));

That’s all the content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/975525.htmlTechArticlephp implements insertion sort, php implements sorting php/*** Insertion sort * @param Array $a unordered set * @return Array ordered set*/function insertSort($a) { $temp; $i; $j; $size_a = count...
Statement:
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