web-dev-qa-db-ja.com

findメソッドを使用した後にstd :: mapを更新する方法は?

findメソッドを使用した後、std::mapのキーの値を更新する方法は?

次のようなマップとイテレータの宣言があります。

map <char, int> m1;
map <char, int>::iterator m1_it;
typedef pair <char, int> count_pair;

マップを使用して、キャラクターの出現回数を保存しています。

Visual C++ 2010を使用しています。

79
jaykumarark

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;
113
James McNellis

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
}
37
Martin York

std::map::atメンバー関数を使用できます。これは、キーkで識別される要素のマッピングされた値への参照を返します。

std::map<char,int> mymap = {
                               { 'a', 0 },
                               { 'b', 0 },
                           };

  mymap.at('a') = 10;
  mymap.at('b') = 20;
3
Manish Sogi

すでにキーを知っている場合は、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    
0
Abhinav1602

次のように値を更新できます

   auto itr = m.find('ch'); 
     if (itr != m.end()){
           (*itr).second = 98;
     }
0
ZAFIR AHMAD

このようにすることもできます

 std::map<char, int>::iterator it = m.find('c'); 
 if (it != m.end())
 (*it).second = 42;
0
chunky