为什么要学算法
因为算法无处不在
算法可以性能优化
c++
面试问题
#includeusing namespace std;void selectSort( int arr[], int n){ for(int i = 0; i < n; i++) { int minIndex = i; for(int j = i+1 ; j < n ; j++) { if(arr[j] < arr[minIndex]) minIndex = j; } swap(arr[i], arr[minIndex]); }}int main(){ int a[5] = {5,62,3,58,444}; selectSort( a, 5 ); for( int i = 0 ; i < 5 ; i++) cout<
来源地址:https://blog.csdn.net/qq_68308828/article/details/133736038