NK1.2-OR63-删除公共字符

OR63-删除公共字符
https://www.nowcoder.com/practice/f0db4c36573d459cae44ac90b90c6212?tpId=85&&tqId=29868&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
哈希映射
先遍历str2
再遍历str1
结果保存在ret中
#include
#include
using namespace std;
int main(){
    string str1,str2;
    //因为字符串有空格所以使用getline输入
    //cin遇到空格就结束
    getline(cin,str1);
    getline(cin,str2);
    //数组开256是因为ASCII码表有256个字符
    int hash[256]={0};
    //先遍历str2
    for(int i=0;i

你可能感兴趣的:(c++,string)