优质题解 找第一个只出现一次的字符(C++代码解析和题解) 摘要:代码解析:使用了哈希表 unordered_map 来统计每个字符的出现次数。首先,定义了一个函数 findFirstUniqueChar,它的输入参数是一个字符串 s,表示要查找的字符串。函数返回第…… 题解列表 2023年07月17日 1 点赞 6 评论 1025 浏览 评分:7.5
利用map的有序性来计数 摘要:```c++ #include #include using namespace std; int main(){ map mmap; string s; cin >> s…… 题解列表 2023年05月22日 0 点赞 0 评论 210 浏览 评分:9.9
双循环遍历 摘要:# 纯纯打表 ```c++ #include #include using namespace std; char str[10000]; int f[26]; int main() …… 题解列表 2023年05月09日 0 点赞 0 评论 163 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:```cpp #include #include using namespace std; int main() { char ch[1000000],letter[26],let…… 题解列表 2023年01月10日 0 点赞 0 评论 344 浏览 评分:9.9