大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
#pragma once void SelectSort(int* array, int n) { assert(array); int left = 0; int right = n-1; while (left < right) { int minIndex = left; int maxIndex = right; for (int i = left; i <= right; ++i) { if (array[i] < array[minIndex]) minIndex = i; if (array[i] > array[maxIndex]) maxIndex = i; } swap(array[left], array[minIndex]); if (left == maxIndex)//调整maxIndex maxIndex = minIndex; swap(array[right], array[maxIndex]); ++left; --right; } } void SelectSortTest() { int array[] = {9, 4, 6, 5, 8, 3, 7, 1, 2, 0}; SelectSort(array, sizeof(array)/sizeof(array[0])); for (size_t i = 0; i < sizeof(array)/sizeof(array[0]); ++i) { cout< #includeusing namespace std; #include #include "SelectSort.h" int main() { SelectSortTest(); return 0; } 创新互联建站凭借在网站建设、网站推广领域领先的技术能力和多年的行业经验,为客户提供超值的营销型网站建设服务,我们始终认为:好的营销型网站就是好的业务员。我们已成功为企业单位、个人等客户提供了成都网站建设、网站设计服务,以良好的商业信誉,完善的服务及深厚的技术力量处于同行领先地位。
网页名称:C++实现选择排序
URL标题:http://dzwzjz.com/article/phogds.html