哈希表 统计字符出现的次数,然后一一匹配,代码一般,时间复杂度有点大,注释都在代码里了,能看懂应该不是问题 #include<iostream> #include<string> #include<vector> #include<unordered_map> #include<algorithm> using namespace std; void func(string inp, vector<string> inps, int k){ unordered_map<char, int> hash...