I am trying to understand Directed Graph implementation (without Boost library that is mentioned alot),just trying to learn things in c++. Here is what I came up with reading various pointers on different questions. I figured I could use a map to look up certain places within the graph and a list to hold the links together.
So the key would be say the first one to be added to the list and those that it links to would be the value held as a list
This gives
key John
value list
list Taylor->Larry->Sarah
#include <iostream>
#include <map>
#include <list>
class Graph {
public:
typedef std::map <std::string, std::list<std::string> > MapType;
MapType am; // adjacency map
Graph() {
}
void addVertex(std::string s) {
if(!am[s]){ // Trying to check if the key has been defined before
std::list<std::string> l;
am[s]=l;
}
}
void addEdge(std::string s1, std::string s2) {
addVertex(s1);
addVertex(s2);
am[s1].push_back(s2);
}
};
int main (int argc, char *argv[] ){
Graph *people;
people = new Graph();
people->addVertex("John");
people->addEdge("John","Taylor");
}
What is the proper way to check whether a key in a map has been defined before for a list as the value?
I know that for
std::map <std::string, int >
the default for unassigned keys is 0 so I would just use !am[s] to check is string s is defined.
For a list it starts off with an error saying there is no match for the operator, which I assume it is talking about the List I am using as the values.
I tried using if(am[s].empty()){ but I don't think that gets what I am looking for.
vectorordequeinstead oflistfor this. – Billy ONeal Nov 17 '10 at 3:34multimap, as given in @James' answer. – Billy ONeal Nov 17 '10 at 3:37