次のように宣言されたmap
があります。
map < string , list < string > > mapex ; list< string > li;
上記のマップに保存されているアイテムをコンソールに表示するにはどうすればよいですか?
表示方法によって異なりますが、いつでも簡単に繰り返すことができます。
typedef map<string, list<string>>::const_iterator MapIterator;
for (MapIterator iter = mapex.begin(); iter != mapex.end(); iter++)
{
cout << "Key: " << iter->first << endl << "Values:" << endl;
typedef list<string>::const_iterator ListIterator;
for (ListIterator list_iter = iter->second.begin(); list_iter != iter->second.end(); list_iter++)
cout << " " << *list_iter << endl;
}
更新(バックトゥザフューチャー):C++ 11範囲ベースのforループ–
std::map<Key, Value> m { ... /* initialize it */ ... };
for (const auto &p : m) {
std::cout << "m[" << p.first << "] = " << p.second << '\n';
}
私は次を試してみたい
void dump_list(const std::list<string>& l) {
for ( std::list<string>::const_iterator it = l.begin(); l != l.end(); l++ ) {
cout << *l << endl;
}
}
void dump_map(const std::map<string, std::list<string>>& map) {
for ( std::map<string,std::list<string>>::const_iterator it = map.begin(); it != map.end(); it++) {
cout << "Key: " << it->first << endl;
cout << "Values" << endl;
dump_list(it->second);
}
私はここで少し話題から外れています...
デバッグのためにマップコンテンツをダンプしたいと思います。次のgdbリリース(バージョン7.0)には組み込みのpythonインタープリターがあり、gcc libstdc ++がstl prettyプリンターを提供するために使用します。ここに例を示します。
#include <map>
#include <map>
#include <list>
#include <string>
using namespace std;
int main()
{
typedef map<string, list<string> > map_type;
map_type mymap;
list<string> mylist;
mylist.Push_back("item 1");
mylist.Push_back("item 2");
mymap["foo"] = mylist;
mymap["bar"] = mylist;
return 0; // stopped here
}
結果として
(gdb) print mymap
$1 = std::map with 2 elements = {
["bar"] = std::list = {
[0] = "item 1",
[1] = "item 2"
},
["foo"] = std::list = {
[0] = "item 1",
[1] = "item 2"
}
}
わーい!
<algorithm>
を使用する別のフォーム:
void printPair(const pair<string, list<string> > &p)
{
cout << "Key: " << p.first << endl;
copy(p.second.begin(), p.second.end(), ostream_iterator<string>(cout, "\n"));
}
for_each(mapex.begin(), mapex.end(), printPair);
テストプログラム:
#include <iostream>
#include <map>
#include <list>
#include <iterator>
#include <algorithm>
using namespace std;
void printPair(const pair<string, list<string> > &p)
{
cout << "Key: " << p.first << endl;
copy(p.second.begin(), p.second.end(), ostream_iterator<string>(cout, "\n"));
}
int main()
{
map<string, list<string> > mapex;
list<string> mylist1;
mylist1.Push_back("item 1");
mylist1.Push_back("item 2");
mapex["foo"] = mylist1;
list<string> mylist2;
mylist2.Push_back("item 3");
mylist2.Push_back("item 4");
mylist2.Push_back("item 5");
mapex["bar"] = mylist2;
for_each(mapex.begin(), mapex.end(), printPair);
}
非常に汎用的なオーバーロード関数を作成できます。これは、2つの目的に適しています。
map
で動作します。<<
を使用できます。機能は
template<class key_t, class value_t>
ostream& operator<<(ostream& os, const map<key_t, value_t>& m) {
for (typename map<key_t, value_t>::const_iterator it = m.begin();
it != m.end(); it++) {
os << "Key: " << it->first << ", Value: " << it->second;
}
return os;
}
cout <<
は、map
s <<
およびkey_t
に対してvalue_t
が定義されているtypename
で動作します。あなたの場合、これはvalue_t
(= list<string>
)に対して定義されていないため、定義する必要があります。同様の精神で、あなたは使用することができます
template<class T>
ostream& operator<<(ostream& os, const list<T>& l) {
for (typename list<T>::const_iterator it = l.begin(); it != l.end(); it++) {
os << "\"" << *it << "\", ";
}
return os;
}
したがって、次のことができます。
using namespace std;
を使用します(または必要に応じてstd::
を追加します)。cout << mapex << endl;
cout << li << endl;
定義された<<
sの実行可能な候補が他にある場合(これはありません。そうでない場合は、この質問をすることはないでしょう)、現在のものより優先される可能性があります。
C++ 11 機能を使用できる場合、 範囲ベースのforループで提案されているように、常磁性クロワッサンの答え は最も読みやすいオプションを提供します。ただし、 C++ 17 を使用できる場合は、それらのループを 構造化バインディングと結合できますfirst
およびsecond
メンバーを使用する必要がなくなったため、読みやすさがさらに向上します。特定のユースケースでは、私のソリューションは次のようになります。
std::map<std::string, std::list<std::string>> mapex;
mapex["a"] = { "1", "2", "3", "4" };
mapex["b"] = { "5", "6", "7" };
for (const auto &[k, v] : mapex) {
std::cout << "m[" << k.c_str() << "] =";
for (const auto &s : v)
std::cout << " " << s.c_str();
std::cout << std::endl;
}
出力:
m [a] = 1 2 3 4
m [b] = 5 6 7