摘要:
<?php function BubbleSort($arr){ $count = count($arr); if($count<=1){ return $arr; } for($i=0;$i<$count;$i++){ $flag = false; //设置为假,判断本轮是否有交换数据 for($j = 0... 阅读全文
posted @ 2017-03-10 15:12
江哥sama
阅读(174)
评论(0)
推荐(0)
浙公网安备 33010602011771号