标签:iostream style col ios std using ace 排序 cin
简单选择排序
#include<iostream> using namespace std; int main() { int r[100]; int n; cin>>n; for(int i=1; i<=n; i++) cin>>r[i]; for(int i=1; i<=n; i++) { int index=i; for(int j=i+1; j<=n; j++) { if(r[j]<r[index]) index=j; } if(index!=i) { int temp; temp=r[index]; r[index]=r[i]; r[i]=temp; } } for(int i=1; i<=n; i++) cout<<r[i]<<" "; return 0; }
标签:iostream style col ios std using ace 排序 cin
原文地址:http://www.cnblogs.com/magicalzh/p/7928629.html