SelectSort

/**简单选择排序*/
#include
#include
using namespace std;
int a[]={5,2,1,3,4,6,8,9,10};
void f(int n){
    for(int i=0;i

你可能感兴趣的:(数据结构)