杭电入门100题适合新手看一看(16-20)

hdu2016数据的交换输出
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2016

输入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
#include
using namespace std;
int main()
{
    int n,i,j,temp,min,a[105];
    while(scanf("%d",&n)!=EOF)
    {
        scanf("%d",&a[0]);
        min=a[0];//假设第一个为最小,每次遇到比他小的就更新最小值
        for(i=1;i<n;i++)
        {
            scanf("%d",&a[i]);
        }
        for(i=0;i<n;i++)
        {
            if(min>=a[i])
            {
                min=a[i];
                j=i;//j记录最小值的下标
            }
        }
        temp=a[0];
        a[0]=a[j];
        a[j]=temp;//交换最小值与第一个元素
        
        for(i=0;i<n;i++)
        {
            printf("%d ",a[i]);
         }
        printf("\n");
    }
    return 0;
}

hdu2017字符串统计
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2017
对于给定的一个字符串,统计其中数字字符出现的次数。
Input
输入数据有多行,第一行是一个整数n,表示测试实例的个数,后面跟着n行,每行包括一个由字母和数字组成的字符串。
Output
对于每个测试实例,输出该串中数值的个数,每个输出占一行。

Sample Input
2
asdfasdf123123asdfasdf
asdf111111111asdfasdfasdf
Sample Output
6
9

这里引进一个isdigit的函数,这里直接就是看是不是数字字符,挺方便的。
知识拓展:杭电入门100题适合新手看一看(16-20)_第1张图片

#include 
#include
#include
#include 
#include 
using namespace std;
int main(){
    int n,i,len;
    char c[10000];
    scanf("%d",&n);
    while(n--){
        int cnt=0;
        scanf("%s",c);
        for(i=1;i<=strlen(c);i++)
        {
 if(isdigit(c[i]))cnt++;//isdigit 检查字符是否为十进制数字

        }
        printf("%d\n",cnt);
    }
    return 0;
}

hdu2018母牛的故事
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2018
有一头母牛,它每年年初生一头小母牛。每头小母牛从第四个年头开始,每年年初也生一头小母牛。请编程实现在第n年的时候,共有多少头母牛?

Input
输入数据由多个测试实例组成,每个测试实例占一行,包括一个整数n(0 n=0表示输入数据的结束,不做处理。
Output
对于每个测试实例,输出在第n年的时候母牛的数量。
每个输出占一行。

Sample Input
2
4
5
0
Sample Output
2
4
6

简单的递推公式,先预处理一下前4年的母牛数量

#include 
#include
#include
using namespace std;
int main()
{
 //先计算a[]的值
    int i,n;
    int a[100]={0,1,2,3,4,};
    //这里是求a数组的元素的个数
    //用 sizeof(a)/sizeof(a[0])
    for(i=4;i<sizeof(a)/sizeof(a[0]);i++){
        a[i]=a[i-1]+a[i-3];
    }
  while(cin>>n&&n!=0)
    printf("%d\n",a[n]);
}

hdu2019数列有序!
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2019
有n(n<=100)个整数,已经按照从小到大顺序排列好,现在另外给一个整数x,请将该数插入到序列中,并使新的序列仍然有序。

Input
输入数据包含多个测试实例,每组数据由两行组成,第一行是n和m,第二行是已经有序的n个数的数列。n和m同时为0标示输入数据的结束,本行不做处理。

Output
对于每个测试实例,输出插入新的元素后的数列。

Sample Input
3 3
1 2 4
0 0
Sample Output
1 2 3 4

设插入的数为a[n+1],然后重新排个序,数据范围比较小,冒泡啊,选择阿这些复杂度都能满足

#include 
#include
#include
using namespace std;
int main(){
    int n,m;
    int a[105];
    while(scanf("%d %d",&n,&m)!=EOF){
        if(n==0&&m==0) continue;
        int i;
        for( i=1;i<=n;i++){
            scanf("%d",&a[i]);
        }
        a[n+1]=m;
        for(i=1;i<=n+1;i++)
            for(int j=i+1;j<=n+1;j++)
                if(a[i]>a[j]){
                    swap(a[i],a[j]);
                }
        for(i=1;i<=n+1;i++){
            printf("% d",a[i]);
            if(i!=n+1)//注意输出空格的条件
                printf(" ");
            else printf("\n");
                }
    }
}

hdu2020绝对值排序
传送门:http://acm.hdu.edu.cn/showproblem.php?pid=2020
输入n(n<=100)个整数,按照绝对值从大到小排序后输出。题目保证对于每一个测试实例,所有的数的绝对值都不相等。

Input
输入数据有多组,每组占一行,每行的第一个数字为n,接着是n个整数,n=0表示输入数据的结束,不做处理。

Output
对于每个测试实例,输出排序后的结果,两个数之间用一个空格隔开。每个测试实例占一行。

3 3 -4 2
4 0 1 2 -3
0
Sample Output
-4 3 2
-3 2 1 0

排序,加了一个绝对值,了解一下排序的原理比较重要。

include <iostream>
#include
#include
#include 
using namespace std;
int main(){
    int n;
     int i;
    int a[105];
    while(scanf("%d",&n)!=EOF){
        if(n==0)continue;
        for ( i=1;i<=n;i++)
            scanf("%d",&a[i]);
        for ( i=1;i<=n;i++)
            for(int j=i+1;j<=n;j++)
                if(abs(a[i])<abs(a[j])){
                    int temp;
                    temp=a[i];
                    a[i]=a[j];
                    a[j]=temp;
                }
 
        for ( i=1;i<=n;i++){
        if(i!=1)
            printf(" ");//空格s的输入需要一定的判定条件
            printf("%d",a[i]);
            
        }
            printf("\n");
    }
    return 0;  
}

你可能感兴趣的:(HDU100道入门)