• 【PAT(甲级)】1050 String Subtraction(用map<char,int>标记字符)


    Given two strings S1​ and S2​, S=S1​−S2​ is defined to be the remaining string after taking all the characters in S2​ from S1​. Your task is simply to calculate S1​−S2​ for any given strings. However, it might not be that simple to do it fast.

    Input Specification:

    Each input file contains one test case. Each case consists of two lines which gives S1​ and S2​, respectively. The string lengths of both strings are no more than 104. It is guaranteed that all the characters are visible ASCII codes and white space, and a new line character signals the end of a string.

    Output Specification:

    For each test case, print S1​−S2​ in one line.

    Sample Input:

    They are students.
    aeiou

    Sample Output:

    Thy r stdnts.

    解题思路:

    给出两行字符串,要求在第一行字符串中删去第二行字符串包含的字符。

    因为有速度上的要求,所以用两个循环来做肯定是不行的。所以我们在读入第二行的字符时需要对他们做一个标记,带有这个标记的字符在输出的时候就可以不输出,时间复杂度就是O(n)啦;用map就可以很好的解决这个问题。

    因为是对每个字符进行标记所以要用char,map这种,用string反而会麻烦。

    char读取一行的代码如下:

    1. char b;
    2. b = getchar();//读取字符
    3. while(b != '\n'){//当不是换行的时候
    4. S1[j]=b;//塞入char数组
    5. j++;//下标往后移动
    6. b = getchar();//继续读取下一个字符
    7. }

    代码:

    1. #include
    2. using namespace std;
    3. int main(){
    4. map<char,int> print;//标记该字符是否需要输出
    5. char S1[10001];//记录S1字符串
    6. int j=0;//统计S1字符串有几个字符
    7. char b;
    8. b = getchar();
    9. while(b != '\n'){
    10. S1[j]=b;
    11. j++;
    12. b = getchar();
    13. }
    14. b = getchar();
    15. while(b != '\n'){
    16. print[b]=1;
    17. b = getchar();
    18. }
    19. for(int i=0;i
    20. if(print.count(S1[i]) > 0 ){
    21. }
    22. else{
    23. cout<
    24. }
    25. }
    26. return 0;
    27. }

  • 相关阅读:
    程序连接oracle查询数据的环境配置
    “蔚来杯“2022牛客暑期多校训练营(加赛) G题: Good red-string
    入门力扣自学笔记115 C++ (题目编号1408)
    软件项目管理 ——1.3.敏捷项目管理概念
    MyBatisplus使用报错--Invalid bound statement
    情绪智力测试
    前端学习案例-有哪些是你成为一名开发之后才知道的事情2021
    SQLAlchemy列参数的使用和query函数的使用
    Factory IO v2.5.2 Crack by Xacker
    【无标题】
  • 原文地址:https://blog.csdn.net/weixin_55202895/article/details/126562312