摘要: 实现思想: 1.寻找[i, n)区间里的最小值min ( i>= 0 ) 2.交换min和第i的数 ( i>= 0 ) #include <iostream> #include <algorithm> using namespace std; void selectionSort(int arr[] 阅读全文
posted @ 2020-02-16 20:06 鸿鹄当高远 阅读(1465) 评论(0) 推荐(0) 编辑