equal
deleted
inserted
replaced
33 |
33 |
34 typedef ListGraph::Node Node; |
34 typedef ListGraph::Node Node; |
35 typedef ListGraph::Edge Edge; |
35 typedef ListGraph::Edge Edge; |
36 |
36 |
37 |
37 |
38 int main( int argc, char *argv[] ) |
38 int main() |
39 { |
39 { |
40 // Declare the graph itself and a NodeMap, witch will store the characters |
40 // Declare the graph itself and a NodeMap, witch will store the characters |
41 // assigned to the nodes |
41 // assigned to the nodes |
42 ListGraph graph; |
42 ListGraph graph; |
43 ListGraph::NodeMap<char> char_map(graph); |
43 ListGraph::NodeMap<char> char_map(graph); |