Rev | Line | |
---|
[378] | 1 | #include <iostream> |
---|
[595] | 2 | #include <cstdlib> |
---|
[378] | 3 | #include "test_graph.h" |
---|
| 4 | |
---|
| 5 | using namespace std; |
---|
| 6 | using namespace hugo; |
---|
| 7 | |
---|
| 8 | |
---|
| 9 | int main() { |
---|
[627] | 10 | ListGraph g; |
---|
| 11 | for (int i = 0; i < 10; ++i) { |
---|
| 12 | ListGraph::Node node = g.addNode(); |
---|
| 13 | } |
---|
[674] | 14 | ListGraph::NodeMap<int> map(g); |
---|
[627] | 15 | for (int i = 0; i < 10; ++i) { |
---|
| 16 | ListGraph::Node node = g.addNode(); |
---|
| 17 | map[node] = rand()%100; |
---|
| 18 | } |
---|
| 19 | for (ListGraph::NodeIt it(g); g.valid(it); g.next(it)) { |
---|
| 20 | cout << map[it] << endl; |
---|
| 21 | } |
---|
| 22 | return 0; |
---|
[378] | 23 | } |
---|
| 24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.