欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

Insertion Sort,insertionsort

程序员文章站 2022-06-02 16:53:14
...

Insertion Sort,insertionsort

 1 php
 2 function swap(&$a, &$b){
 3     $c = $a;
 4     $a = $b;
 5     $b = $c;
 6 }
 7 
 8 # insertion sort
 9 # ascend
10 function sortInsertion(&$a){ # a is an array of numbers
11 
12     # length of a
13     $m = count($a);
14 
15     if($m ){
相关标签: sort