✍个人博客:https://blog.csdn.net/Newin2020?spm=1011.2415.3001.5343
📚专栏地址:PAT题解集合
📝原题地址:题目详情 - 1084 Broken Keyboard (pintia.cn)
🔑中文翻译:坏掉的键盘
📣专栏定位:为想考甲级PAT的小伙伴整理常考算法题解,祝大家都能取得满分!
❤️如果有收获的话,欢迎点赞👍收藏📁,您的支持就是我创作的最大动力💪
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
a 和 b ,并且在 b 后面加上 # 作为终止标志。i 负责遍历字符串 a ,j 负责遍历字符串 b 。toupper ,能够将小写字母转换成大写字母并返回。这样,就得到了两个字符 x 和 y 。x==y ,则 i 和 j 都往后移一位。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;
}