やったこと
map::count の動きを確認してみます。
確認環境
$ g++ --version
g++ (Homebrew GCC 9.2.0) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
調査
test.cpp
#include <bits/stdc++.h>
using namespace std;
int main() {
map<string, int> mp;
mp["A"]++;
mp["E"]++;
mp["A"]++;
cout << "A の表示" << endl;
cout << mp["A"] << endl;
// count は存在チェック
cout << mp.count("A") << endl;
// 存在しないキーは 0 となる
cout << "B の表示" << endl;
cout << mp["B"] << endl;
cout << mp.count("B") << endl;
}
出力結果
A の表示
2
1
B の表示
0
1