Quick Sort In-place Implementation,quicksort_PHP教程
程序员文章站
2022-04-23 08:12:58
...
Quick Sort In-place Implementation,quicksort
在线运行PHP http://www.compileonline.com/execute_php_online.php
1 php 2 function swap( &$a, &$b ) 3 { 4 $c = $a; 5 $a = $b; 6 $b = $c; 7 } 8 9 /** 10 * quick sort 11 * ascend 12 * in-place 13 */ 14 function quick_sort( &$a ) 15 { 16 $s = count( $a ); // size of a 17 if ( $s return
上一篇: thinkphp连接oracle数据库
下一篇: PHP字符串的概念简介
推荐阅读