• 【PAT甲级】1084 Broken Keyboard


    ✍个人博客:https://blog.csdn.net/Newin2020?spm=1011.2415.3001.5343
    📚专栏地址:PAT题解集合
    📝原题地址:题目详情 - 1084 Broken Keyboard (pintia.cn)
    🔑中文翻译:坏掉的键盘
    📣专栏定位:为想考甲级PAT的小伙伴整理常考算法题解,祝大家都能取得满分!
    ❤️如果有收获的话,欢迎点赞👍收藏📁,您的支持就是我创作的最大动力💪

    1084 Broken Keyboard

    On a broken keyboard, some of the keys are worn out. So when you type some sentences, the characters corresponding to those keys will not appear on screen.

    Now given a string that you are supposed to type, and the string that you actually type out, please list those keys which are for sure worn out.

    Input Specification:

    Each input file contains one test case. For each case, the 1st line contains the original string, and the 2nd line contains the typed-out string. Each string contains no more than 80 characters which are either English letters [A-Z] (case insensitive), digital numbers [0-9], or _ (representing the space). It is guaranteed that both strings are non-empty.

    Output Specification:

    For each test case, print in one line the keys that are worn out, in the order of being detected. The English letters must be capitalized. Each worn out key must be printed once only. It is guaranteed that there is at least one worn out key.

    Sample Input:

    7_This_is_a_test
    _hs_s_a_es
    
    • 1
    • 2

    Sample Output:

    7TI
    
    • 1
    思路
    1. 输入两个字符串 ab ,并且在 b 后面加上 # 作为终止标志。
    2. 设置两个指针,i 负责遍历字符串 aj 负责遍历字符串 b
    3. 每次遍历时如果遇到小写字母,统一变成大写字母,这里用到了库函数 toupper ,能够将小写字母转换成大写字母并返回。这样,就得到了两个字符 xy
    4. 如果 x==y ,则 ij 都往后移一位。
    5. 如果 x!=y ,则说明键盘上 x 的地方坏了,如果还没有输出 x 则输出它,然后只有 i 往后移一位。
    代码
    #include
    using namespace std;
    
    int main()
    {
        string a, b;
        cin >> a >> b;
    
        bool st[200] = { 0 };
        b += '#'; //作为终止标志
        for (int i = 0, j = 0; i <= a.size(); i++)
        {
            char x = toupper(a[i]), y = toupper(b[j]);
            if (x == y)    j++;
            else
            {
                if (!st[x])  cout << x, st[x] = true;
            }
        }
    
        return 0;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
  • 相关阅读:
    字符串反转
    【小程序】页面跳转
    《uni-app》表单组件-Picker组件
    d为何用模板参数
    可编程 USB 转串口适配器开发板 SHT3x-DIS 温湿度传感器芯片
    Spring Security 集成 OAuth 2.0 认证(二)
    Lumiprobe细胞成像分析:PKH26 细胞膜标记试剂盒
    安装gymnasium[box2d]的问题
    什么是数据中台,关于数据中台的6问6答6方法
    Comparable比较器写法&ClassCastExcption类转换异常
  • 原文地址:https://blog.csdn.net/Newin2020/article/details/126653112