Хорошо, так что в моем основном, когда я пытаюсь распечатать набор, используя перегруженный оператор << вставки, я получаю сообщение об ошибке, ошибка: нет совпадения для 'operator <<' в 'std :: cout << person_list «И затем это дает мне огромный список кандидатов, которые на самом деле работают, я полагаю. Интересно то, что цикл for в main выведет то, как я ожидаю, что перегрузка вставки будет распечатана. У меня также уже есть перегрузка для структуры person. Есть идеи? </p>
Вот что у меня есть:
#include <iostream>
#include <string>
#include <iterator>
#include <algorithm>
#include "personDirectory.h"
using namespace std;
void person_directory::addPerson(const person& p){
people.push_back(p);
idMap.insert(pair<int,person*>(p.id, const_cast<person*>(&p)));
phoneMap.insert(pair<int,person*>(p.phoneNumber, const_cast<person*>(&p)));
ageMap.insert(pair<int,person*>(p.age, const_cast<person*>(&p)));
nameMap.insert(pair<string,person*>(p.name, const_cast<person*>(&p)));
cout << "*******************" << endl << endl;
cout << "Person: " << endl;
cout << p;
cout << "was added" << endl;
cout << "*******************" << endl;
}
set<person*> person_directory::findByName(string fn){
//maybe construct a set using the constructor with
//iterator from beginning of map to end of map
set<person*> temp;
for(multimap<string, person*>::const_iterator it = nameMap.begin();
it != nameMap.end();){
if(it->first == fn)
temp.insert(it->second);
it++;
}
return temp;
}
ostream& operator<<(ostream& out,const set<person*>& s){
out << "Your set: " << endl;
for(set<person*>::const_iterator it = s.begin(); it != s.end(); ++it){
out << **it;
}
return out;
}
Вот главное:
#include <iostream>
#include <vector>
#include "person.h"
#include "personDirectory.h"
using namespace std;
int main(){
//testing person
person* p1 = new person(1, "Carl Jr", 36, 4563456);
person* p2 = new person(2, "Indiana Jones", 24, 6782345);
person* p3 = new person(3, "Bobby Boy", 23, 6782275);
person* p4 = new person(4, "Robby", 19, 6782234);
person* p5 = new person(5, "Carl Sagan", 47, 4562234);
person* p6 = new person(6, "Bobby Boy", 11, 6786657);
person_directory* person_dir = new person_directory();
person_dir->addPerson(*p1);
person_dir->addPerson(*p2);
person_dir->addPerson(*p3);
person_dir->addPerson(*p4);
person_dir->addPerson(*p5);
person_dir->addPerson(*p6);
set<person*> person_list;
person_list = person_dir->findByName("Bobby Boy");
cout << person_list;
for(set<person*>::const_iterator it = person_list.begin(); it != person_list.end(); ++it){
cout << **it;
}
}
Вот последняя важная часть, которую я думаю:
#ifndef _PERSON_DIRECTORY_H_
#define _PERSON_DIRECTORY_H_
#include "person.h"
#include <map>
#include <set>
#include <vector>
using std::map;
using std::set;
using std::vector;
using std::multimap;
class person_directory {
private:
// this vector will contain the actual data
vector<person> people;
// this maps serve as indexes; they contain pointers to the data in people
map<int,person*> idMap;
multimap<int,person*> phoneMap, ageMap;
multimap<string,person*> nameMap;
public:
void addPerson(const person& p);
set<person*> findByName(string fn);
person* findById(int id);
set<person*> findByAge(int age);
set<person*> findByPhone(int p);
friend std::ostream& operator<<(std::ostream& out, const std::set<person*>& s);
};
#endif