hdu 2016 数据的交换输出
Posted wz-archer
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 2016 数据的交换输出相关的知识,希望对你有一定的参考价值。
Problem Description
输入n(n<100)个数,找出其中最小的数,将它与最前面的数交换后输出这些数。
Input
输入数据有多组,每组占一行,每行的开始是一个整数n,表示这个测试实例的数值的个数,跟着就是n个整数。n=0表示输入的结束,不做处理。
Output
对于每组输入数据,输出交换后的数列,每组输出占一行。
Sample Input
4 2 1 3 4
5 5 4 3 2 1
0
Sample Output
1 2 3 4
1 4 3 2 5
#include <algorithm> #include <iostream> #include <cstring> #include <cstdio> #include <vector> #include <cmath> #include <queue> #include <deque> #include <cmath> #include <map> using namespace std; typedef long long ll; const double inf=1e20; const int maxn=2e5+10; const int mod=1e9+7; int a[maxn]; int main(){ int n; while(scanf("%d",&n)!=EOF){ if(n==0)break; int j=0; for(int i=0;i<n;i++){ scanf("%d",&a[i]); if(a[j]>a[i])j=i; } swap(a[0],a[j]); for(int i=0;i<n;i++){ if(i==0)printf("%d",a[i]); else printf(" %d",a[i]); } printf(" "); } return 0; }
补:仔细看看,这其实就是选择排序的第一次循环
以上是关于hdu 2016 数据的交换输出的主要内容,如果未能解决你的问题,请参考以下文章