1084 Broken Keyboard (20)

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

Sample Output:

7TI


思路:1.把所有的小写字母转换为大写字母;
    2.用一个数组来记录某个字母是否出现v[a[i]]=-1, 表示该a[i]没有出现,v[a[i]]=1表示a[i]出现过。 因为字符都是ascii码, 可以用一个大小为128的数组来保存
 1 #include<iostream>
 2 #include<vector>
 3 using namespace std;
 4 int main(){
 5     string a, b;
 6     cin>>a>>b;
 7     int i;
 8     vector<int> v(130, -1);
 9     vector<char> ans;
10     for(i=0; i<b.size(); i++){
11         if(b[i]>='a' && b[i]<='z') b[i] = b[i]-32;
12         v[b[i]] = 1;
13     }
14     for(i=0; i<a.size(); i++){
15         if(a[i]>='a' && a[i]<='z') a[i] = a[i]-32;
16         if(v[a[i]]==-1){ cout<<a[i]; v[a[i]] = 1;}
17     }
18 return 0;
19 }

猜你喜欢

转载自www.cnblogs.com/mr-stn/p/9157819.html