find
メソッドを使用した後、std::map
のキーの値を更新する方法は?
次のようなマップとイテレータの宣言があります。
map <char, int> m1;
map <char, int>::iterator m1_it;
typedef pair <char, int> count_pair;
マップを使用して、キャラクターの出現回数を保存しています。
Visual C++ 2010を使用しています。
std::map::find
は、見つかった要素(または要素が見つからなかった場合はend()
)に反復子を返します。 map
がconstでない限り、イテレータが指す要素を変更できます。
std::map<char, int> m;
m.insert(std::make_pair('c', 0)); // c is for cookie
std::map<char, int>::iterator it = m.find('c');
if (it != m.end())
it->second = 42;
Operator []を使用します。
map <char, int> m1;
m1['G'] ++; // If the element 'G' does not exist then it is created and
// initialized to zero. A reference to the internal value
// is returned. so that the ++ operator can be applied.
// If 'G' did not exist it now exist and is 1.
// If 'G' had a value of 'n' it now has a value of 'n+1'
したがって、この手法を使用すると、ストリームからすべての文字を読み取り、それらをカウントするのが非常に簡単になります。
map <char, int> m1;
std::ifstream file("Plop");
std::istreambuf_iterator<char> end;
for(std::istreambuf_iterator<char> loop(file); loop != end; ++loop)
{
++m1[*loop]; // prefer prefix increment out of habbit
}
std::map::at
メンバー関数を使用できます。これは、キーkで識別される要素のマッピングされた値への参照を返します。
std::map<char,int> mymap = {
{ 'a', 0 },
{ 'b', 0 },
};
mymap.at('a') = 10;
mymap.at('b') = 20;
すでにキーを知っている場合は、m[key] = new_value
を使用してそのキーの値を直接更新できます
役立つサンプルコードを次に示します。
map<int, int> m;
for(int i=0; i<5; i++)
m[i] = i;
for(auto it=m.begin(); it!=m.end(); it++)
cout<<it->second<<" ";
//Output: 0 1 2 3 4
m[4] = 7; //updating value at key 4 here
cout<<"\n"; //Change line
for(auto it=m.begin(); it!=m.end(); it++)
cout<<it->second<<" ";
// Output: 0 1 2 3 7
次のように値を更新できます
auto itr = m.find('ch');
if (itr != m.end()){
(*itr).second = 98;
}
このようにすることもできます
std::map<char, int>::iterator it = m.find('c');
if (it != m.end())
(*it).second = 42;