文件名称:select_sort
介绍说明--下载内容均来自于网络,请自行研究使用
/*选择排序
*从待排序的数中找到最小的元素,放到第一个位置,
*从剩下的n - 1个元素中找到最小的元素,放到第二个位置,
*依次下去,直到n - 1个元素。
*每次排序都会在待排序的元素中找出一个最小的值放到待排序的数的首段。
*/-/* Sort select* find the smallest element from the number to be sorted, and placed in the first position, find the smallest element* from the remaining n- 1 elements, placed in the second position,* turn down Until n- 1 elements.* Number of each sort will identify a minimum value on the elements to be sorted to be sorted first paragraph.* /
*从待排序的数中找到最小的元素,放到第一个位置,
*从剩下的n - 1个元素中找到最小的元素,放到第二个位置,
*依次下去,直到n - 1个元素。
*每次排序都会在待排序的元素中找出一个最小的值放到待排序的数的首段。
*/-/* Sort select* find the smallest element from the number to be sorted, and placed in the first position, find the smallest element* from the remaining n- 1 elements, placed in the second position,* turn down Until n- 1 elements.* Number of each sort will identify a minimum value on the elements to be sorted to be sorted first paragraph.* /
(系统自动生成,下载前可以参看下载内容)
下载文件列表
select_sort.c