HaveF / spexamples

Automatically exported from code.google.com/p/spexamples
0 stars 0 forks source link

动态数组章节中的冒泡排序 #12

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
代码所示的算法并不是冒泡排序,是选择排序。是两种不同��
�算法
选择排序就是一轮先将最大的数选出,在适当位置做交换,��
�换的次数一共是n-1,如代
码中所示
冒泡排序时不断的在相邻两个位置做比较,在条件满足时不��
�的做交换

Original issue reported on code.google.com by pocke...@gmail.com on 13 May 2010 at 9:10

GoogleCodeExporter commented 9 years ago
呵,看了一下自由百科,是我把概念搞错了,谢谢了。

Original comment by xianji...@gmail.com on 24 May 2010 at 1:33