zoukankan      html  css  js  c++  java
  • 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 }
    有疑惑或者更好的解决方法的朋友,可以联系我,大家一起探讨。qq:1546431565
  • 相关阅读:
    SQLSERVER 对于非dbo的表增加注释
    关于Dos命令中存在中文的解决方法
    NHibernate 映射关系
    解决SVN图标不显示问题
    SqlServer使用表值函数汇总
    【编程练习】poj1068
    【编程练习】poj1111
    大数据处理的一些总结和应用(有关舆情监控)
    leetcode 37. Sudoku Solver 36. Valid Sudoku 数独问题
    Leetcode 4 Median of Two Sorted Arrays
  • 原文地址:https://www.cnblogs.com/mr-stn/p/9157819.html
Copyright © 2011-2022 走看看