搜索资源列表
SortAlgorithm
- VS2010 单文档 实现了三种排序算法的动态演示(冒泡,选择,插入),可以自动演示也可单步演示。-VS2010 single document to achieve a dynamic presentation of three sorting algorithms (bubble, selection, insertion), can also be a single-step automatic demo demo.
maoppaixu
- 冒泡排序(Bubble Sort),是一种计算机科学领域的较简单的排序算法。 它重复地走访过要排序的数列,一次比较两个元素,如果他们的顺序错误就把他们交换过来。走访数列的工作是重复地进行直到没有再需要交换,也就是说该数列已经排序完成。 这个算法的名字由来是因为越大的元素会经由交换慢慢“浮”到数列的顶端,故名。- a simple bubble sort algorithm