3

マップを作成し、フロート値をペア型のキーにマップしようとしています。表示機能を使用して地図を表示できません。

#include <iostream>
#include <utility>
#include <iomanip>
#include <map>

using namespace std;
typedef pair<int, int> Key; //pair

void display (map <Key,float> &m) // to print maps
{
    cout << "\tTotal size: " << m.size() << endl; 
    map <Key,float>::iterator it;
    for (it = m.begin(); it != m.end(); ++it)
       cout << setw(10) << it->first << setw(5) << it->second << endl;

    cout << endl; 
}

int main() {

map< Key , float> mapa; //create map

Key p1 (1, 45); //key values
Key p2 (2, 20);

mapa[p1]= 25.11; //map float to keys
mapa[p2]= 11.23;

display(mapa); //display map

return 0;

}
4

2 に答える 2

6

std::pairキー (つまり、マップの最初のテンプレート パラメーター) であるを出力しようとしていますが、ストリーム オペレーターが定義されていません。これを使って:

std::cout << setw(10) << it->first.first
          << setw(5) << it->first.second
          << setw(5) << it->second
          << std::endl;
于 2012-11-21T18:40:51.433 に答える
1

次のようなものを試すことができます:

for (it = m.begin(); it != m.end(); ++it)
   cout << '(' << setw(10) << it->first.first << ", " << setw(10) << it->first.second << ") -> " << setw(5) << it->second << endl;
于 2012-11-21T18:41:36.767 に答える