| [105] | 1 | // -*- mode:C++ -*- | 
|---|
|  | 2 |  | 
|---|
| [185] | 3 | #ifndef HUGO_SMART_GRAPH_H | 
|---|
|  | 4 | #define HUGO_SMART_GRAPH_H | 
|---|
| [104] | 5 |  | 
|---|
| [491] | 6 | ///\ingroup graphs | 
|---|
| [242] | 7 | ///\file | 
|---|
|  | 8 | ///\brief SmartGraph and SymSmartGraph classes. | 
|---|
|  | 9 |  | 
|---|
| [104] | 10 | #include <vector> | 
|---|
| [782] | 11 | #include <climits> | 
|---|
| [104] | 12 |  | 
|---|
| [542] | 13 | #include <hugo/invalid.h> | 
|---|
| [157] | 14 |  | 
|---|
| [897] | 15 | #include <hugo/array_map.h> | 
|---|
| [822] | 16 | #include <hugo/sym_map.h> | 
|---|
|  | 17 |  | 
|---|
| [782] | 18 | #include <hugo/map_registry.h> | 
|---|
|  | 19 |  | 
|---|
|  | 20 | #include <hugo/map_defines.h> | 
|---|
|  | 21 |  | 
|---|
| [105] | 22 | namespace hugo { | 
|---|
| [104] | 23 |  | 
|---|
| [407] | 24 | /// \addtogroup graphs | 
|---|
|  | 25 | /// @{ | 
|---|
| [782] | 26 | //  class SymSmartGraph; | 
|---|
| [185] | 27 |  | 
|---|
| [186] | 28 | ///A smart graph class. | 
|---|
|  | 29 |  | 
|---|
|  | 30 | ///This is a simple and fast graph implementation. | 
|---|
|  | 31 | ///It is also quite memory efficient, but at the price | 
|---|
|  | 32 | ///that <b> it does not support node and edge deletion</b>. | 
|---|
| [880] | 33 | ///It conforms to | 
|---|
|  | 34 | ///the \ref skeleton::ExtendableGraph "ExtendableGraph" concept. | 
|---|
|  | 35 | ///\sa skeleton::ExtendableGraph. | 
|---|
| [402] | 36 | /// | 
|---|
|  | 37 | ///\todo Some member functions could be \c static. | 
|---|
| [753] | 38 | /// | 
|---|
|  | 39 | ///\todo A possibly useful functionality: a function saveState() would | 
|---|
|  | 40 | ///give back a data sturcture X and then the function restoreState(X) | 
|---|
|  | 41 | ///would remove the nodes and edges added after the call of saveState(). | 
|---|
|  | 42 | ///Of course it should be used as a stack. (Maybe X is not necessary.) | 
|---|
|  | 43 | /// | 
|---|
| [456] | 44 | ///\author Alpar Juttner | 
|---|
| [104] | 45 | class SmartGraph { | 
|---|
|  | 46 |  | 
|---|
|  | 47 | struct NodeT | 
|---|
|  | 48 | { | 
|---|
|  | 49 | int first_in,first_out; | 
|---|
| [157] | 50 | NodeT() : first_in(-1), first_out(-1) {} | 
|---|
| [104] | 51 | }; | 
|---|
|  | 52 | struct EdgeT | 
|---|
|  | 53 | { | 
|---|
|  | 54 | int head, tail, next_in, next_out; | 
|---|
|  | 55 | //FIXME: is this necessary? | 
|---|
| [157] | 56 | EdgeT() : next_in(-1), next_out(-1) {} | 
|---|
| [104] | 57 | }; | 
|---|
|  | 58 |  | 
|---|
|  | 59 | std::vector<NodeT> nodes; | 
|---|
| [129] | 60 |  | 
|---|
| [104] | 61 | std::vector<EdgeT> edges; | 
|---|
|  | 62 |  | 
|---|
| [185] | 63 |  | 
|---|
| [104] | 64 | public: | 
|---|
| [782] | 65 |  | 
|---|
|  | 66 | typedef SmartGraph Graph; | 
|---|
| [104] | 67 |  | 
|---|
| [164] | 68 | class Node; | 
|---|
|  | 69 | class Edge; | 
|---|
| [108] | 70 |  | 
|---|
| [164] | 71 | class NodeIt; | 
|---|
|  | 72 | class EdgeIt; | 
|---|
| [104] | 73 | class OutEdgeIt; | 
|---|
|  | 74 | class InEdgeIt; | 
|---|
|  | 75 |  | 
|---|
| [822] | 76 | /// Creating map registries. | 
|---|
| [782] | 77 | CREATE_MAP_REGISTRIES; | 
|---|
| [822] | 78 | /// Creating node and edge maps. | 
|---|
| [897] | 79 | CREATE_MAPS(ArrayMap); | 
|---|
| [104] | 80 |  | 
|---|
|  | 81 | public: | 
|---|
|  | 82 |  | 
|---|
|  | 83 | SmartGraph() : nodes(), edges() { } | 
|---|
| [136] | 84 | SmartGraph(const SmartGraph &_g) : nodes(_g.nodes), edges(_g.edges) { } | 
|---|
| [104] | 85 |  | 
|---|
| [813] | 86 | ///Number of nodes. | 
|---|
|  | 87 | int nodeNum() const { return nodes.size(); } | 
|---|
|  | 88 | ///Number of edges. | 
|---|
|  | 89 | int edgeNum() const { return edges.size(); } | 
|---|
| [104] | 90 |  | 
|---|
| [813] | 91 | /// Maximum node ID. | 
|---|
|  | 92 |  | 
|---|
|  | 93 | /// Maximum node ID. | 
|---|
|  | 94 | ///\sa id(Node) | 
|---|
|  | 95 | int maxNodeId() const { return nodes.size()-1; } | 
|---|
|  | 96 | /// Maximum edge ID. | 
|---|
|  | 97 |  | 
|---|
|  | 98 | /// Maximum edge ID. | 
|---|
|  | 99 | ///\sa id(Edge) | 
|---|
|  | 100 | int maxEdgeId() const { return edges.size()-1; } | 
|---|
| [108] | 101 |  | 
|---|
| [164] | 102 | Node tail(Edge e) const { return edges[e.n].tail; } | 
|---|
|  | 103 | Node head(Edge e) const { return edges[e.n].head; } | 
|---|
| [104] | 104 |  | 
|---|
| [164] | 105 | NodeIt& first(NodeIt& v) const { | 
|---|
|  | 106 | v=NodeIt(*this); return v; } | 
|---|
|  | 107 | EdgeIt& first(EdgeIt& e) const { | 
|---|
|  | 108 | e=EdgeIt(*this); return e; } | 
|---|
|  | 109 | OutEdgeIt& first(OutEdgeIt& e, const Node v) const { | 
|---|
| [104] | 110 | e=OutEdgeIt(*this,v); return e; } | 
|---|
| [164] | 111 | InEdgeIt& first(InEdgeIt& e, const Node v) const { | 
|---|
| [104] | 112 | e=InEdgeIt(*this,v); return e; } | 
|---|
|  | 113 |  | 
|---|
| [813] | 114 | /// Node ID. | 
|---|
|  | 115 |  | 
|---|
|  | 116 | /// The ID of a valid Node is a nonnegative integer not greater than | 
|---|
|  | 117 | /// \ref maxNodeId(). The range of the ID's is not surely continuous | 
|---|
|  | 118 | /// and the greatest node ID can be actually less then \ref maxNodeId(). | 
|---|
|  | 119 | /// | 
|---|
|  | 120 | /// The ID of the \ref INVALID node is -1. | 
|---|
|  | 121 | ///\return The ID of the node \c v. | 
|---|
| [713] | 122 | static int id(Node v) { return v.n; } | 
|---|
| [813] | 123 | /// Edge ID. | 
|---|
|  | 124 |  | 
|---|
|  | 125 | /// The ID of a valid Edge is a nonnegative integer not greater than | 
|---|
|  | 126 | /// \ref maxEdgeId(). The range of the ID's is not surely continuous | 
|---|
|  | 127 | /// and the greatest edge ID can be actually less then \ref maxEdgeId(). | 
|---|
|  | 128 | /// | 
|---|
|  | 129 | /// The ID of the \ref INVALID edge is -1. | 
|---|
|  | 130 | ///\return The ID of the edge \c e. | 
|---|
| [713] | 131 | static int id(Edge e) { return e.n; } | 
|---|
| [104] | 132 |  | 
|---|
| [164] | 133 | Node addNode() { | 
|---|
|  | 134 | Node n; n.n=nodes.size(); | 
|---|
| [104] | 135 | nodes.push_back(NodeT()); //FIXME: Hmmm... | 
|---|
| [108] | 136 |  | 
|---|
| [782] | 137 |  | 
|---|
|  | 138 | node_maps.add(n); | 
|---|
| [104] | 139 | return n; | 
|---|
|  | 140 | } | 
|---|
| [108] | 141 |  | 
|---|
| [164] | 142 | Edge addEdge(Node u, Node v) { | 
|---|
|  | 143 | Edge e; e.n=edges.size(); edges.push_back(EdgeT()); //FIXME: Hmmm... | 
|---|
| [104] | 144 | edges[e.n].tail=u.n; edges[e.n].head=v.n; | 
|---|
|  | 145 | edges[e.n].next_out=nodes[u.n].first_out; | 
|---|
|  | 146 | edges[e.n].next_in=nodes[v.n].first_in; | 
|---|
|  | 147 | nodes[u.n].first_out=nodes[v.n].first_in=e.n; | 
|---|
| [108] | 148 |  | 
|---|
| [782] | 149 | edge_maps.add(e); | 
|---|
| [108] | 150 |  | 
|---|
| [104] | 151 | return e; | 
|---|
|  | 152 | } | 
|---|
|  | 153 |  | 
|---|
| [774] | 154 | /// Finds an edge between two nodes. | 
|---|
|  | 155 |  | 
|---|
|  | 156 | /// Finds an edge from node \c u to node \c v. | 
|---|
|  | 157 | /// | 
|---|
|  | 158 | /// If \c prev is \ref INVALID (this is the default value), then | 
|---|
|  | 159 | /// It finds the first edge from \c u to \c v. Otherwise it looks for | 
|---|
|  | 160 | /// the next edge from \c u to \c v after \c prev. | 
|---|
|  | 161 | /// \return The found edge or INVALID if there is no such an edge. | 
|---|
|  | 162 | Edge findEdge(Node u,Node v, Edge prev = INVALID) | 
|---|
|  | 163 | { | 
|---|
|  | 164 | int e = (prev.n==-1)? nodes[u.n].first_out : edges[prev.n].next_out; | 
|---|
|  | 165 | while(e!=-1 && edges[e].tail!=v.n) e = edges[e].next_out; | 
|---|
|  | 166 | prev.n=e; | 
|---|
|  | 167 | return prev; | 
|---|
|  | 168 | } | 
|---|
|  | 169 |  | 
|---|
| [782] | 170 | void clear() { | 
|---|
|  | 171 | edge_maps.clear(); | 
|---|
|  | 172 | edges.clear(); | 
|---|
|  | 173 | node_maps.clear(); | 
|---|
|  | 174 | nodes.clear(); | 
|---|
|  | 175 | } | 
|---|
| [104] | 176 |  | 
|---|
| [164] | 177 | class Node { | 
|---|
| [104] | 178 | friend class SmartGraph; | 
|---|
|  | 179 | template <typename T> friend class NodeMap; | 
|---|
|  | 180 |  | 
|---|
| [164] | 181 | friend class Edge; | 
|---|
| [104] | 182 | friend class OutEdgeIt; | 
|---|
|  | 183 | friend class InEdgeIt; | 
|---|
| [164] | 184 | friend class SymEdge; | 
|---|
| [104] | 185 |  | 
|---|
|  | 186 | protected: | 
|---|
|  | 187 | int n; | 
|---|
| [722] | 188 | friend int SmartGraph::id(Node v); | 
|---|
| [164] | 189 | Node(int nn) {n=nn;} | 
|---|
| [104] | 190 | public: | 
|---|
| [164] | 191 | Node() {} | 
|---|
| [503] | 192 | Node (Invalid) { n=-1; } | 
|---|
| [164] | 193 | bool operator==(const Node i) const {return n==i.n;} | 
|---|
|  | 194 | bool operator!=(const Node i) const {return n!=i.n;} | 
|---|
|  | 195 | bool operator<(const Node i) const {return n<i.n;} | 
|---|
| [774] | 196 | //      ///Validity check | 
|---|
|  | 197 | //      operator bool() { return n!=-1; } | 
|---|
| [104] | 198 | }; | 
|---|
|  | 199 |  | 
|---|
| [164] | 200 | class NodeIt : public Node { | 
|---|
| [774] | 201 | const SmartGraph *G; | 
|---|
| [104] | 202 | friend class SmartGraph; | 
|---|
|  | 203 | public: | 
|---|
| [402] | 204 | NodeIt() : Node() { } | 
|---|
| [774] | 205 | NodeIt(const SmartGraph& _G,Node n) : Node(n), G(&_G) { } | 
|---|
| [402] | 206 | NodeIt(Invalid i) : Node(i) { } | 
|---|
| [774] | 207 | NodeIt(const SmartGraph& _G) : Node(_G.nodes.size()?0:-1), G(&_G) { } | 
|---|
|  | 208 | NodeIt &operator++() { | 
|---|
|  | 209 | n=(n+2)%(G->nodes.size()+1)-1; | 
|---|
|  | 210 | return *this; | 
|---|
|  | 211 | } | 
|---|
|  | 212 | //       ///Validity check | 
|---|
|  | 213 | //       operator bool() { return Node::operator bool(); } | 
|---|
| [104] | 214 | }; | 
|---|
|  | 215 |  | 
|---|
| [164] | 216 | class Edge { | 
|---|
| [104] | 217 | friend class SmartGraph; | 
|---|
|  | 218 | template <typename T> friend class EdgeMap; | 
|---|
| [185] | 219 |  | 
|---|
|  | 220 | //template <typename T> friend class SymSmartGraph::SymEdgeMap; | 
|---|
|  | 221 | //friend Edge SymSmartGraph::opposite(Edge) const; | 
|---|
| [104] | 222 |  | 
|---|
| [164] | 223 | friend class Node; | 
|---|
| [104] | 224 | friend class NodeIt; | 
|---|
|  | 225 | protected: | 
|---|
|  | 226 | int n; | 
|---|
| [722] | 227 | friend int SmartGraph::id(Edge e); | 
|---|
| [157] | 228 |  | 
|---|
| [706] | 229 | public: | 
|---|
|  | 230 | /// An Edge with id \c n. | 
|---|
|  | 231 |  | 
|---|
|  | 232 | /// \bug It should be | 
|---|
|  | 233 | /// obtained by a member function of the Graph. | 
|---|
| [164] | 234 | Edge(int nn) {n=nn;} | 
|---|
|  | 235 | Edge() { } | 
|---|
| [174] | 236 | Edge (Invalid) { n=-1; } | 
|---|
| [164] | 237 | bool operator==(const Edge i) const {return n==i.n;} | 
|---|
|  | 238 | bool operator!=(const Edge i) const {return n!=i.n;} | 
|---|
|  | 239 | bool operator<(const Edge i) const {return n<i.n;} | 
|---|
| [185] | 240 | ///\bug This is a workaround until somebody tells me how to | 
|---|
|  | 241 | ///make class \c SymSmartGraph::SymEdgeMap friend of Edge | 
|---|
|  | 242 | int &idref() {return n;} | 
|---|
| [774] | 243 | const int &idref() const {return n;} | 
|---|
|  | 244 | //       ///Validity check | 
|---|
|  | 245 | //       operator bool() { return n!=-1; } | 
|---|
|  | 246 | }; | 
|---|
| [104] | 247 |  | 
|---|
| [164] | 248 | class EdgeIt : public Edge { | 
|---|
| [774] | 249 | const SmartGraph *G; | 
|---|
| [104] | 250 | friend class SmartGraph; | 
|---|
|  | 251 | public: | 
|---|
| [774] | 252 | EdgeIt(const SmartGraph& _G) : Edge(_G.edges.size()-1), G(&_G) { } | 
|---|
|  | 253 | EdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { } | 
|---|
| [164] | 254 | EdgeIt (Invalid i) : Edge(i) { } | 
|---|
|  | 255 | EdgeIt() : Edge() { } | 
|---|
| [185] | 256 | ///\bug This is a workaround until somebody tells me how to | 
|---|
|  | 257 | ///make class \c SymSmartGraph::SymEdgeMap friend of Edge | 
|---|
|  | 258 | int &idref() {return n;} | 
|---|
| [774] | 259 | EdgeIt &operator++() { --n; return *this; } | 
|---|
|  | 260 | //       ///Validity check | 
|---|
|  | 261 | //       operator bool() { return Edge::operator bool(); } | 
|---|
| [104] | 262 | }; | 
|---|
|  | 263 |  | 
|---|
| [164] | 264 | class OutEdgeIt : public Edge { | 
|---|
| [774] | 265 | const SmartGraph *G; | 
|---|
| [104] | 266 | friend class SmartGraph; | 
|---|
|  | 267 | public: | 
|---|
| [164] | 268 | OutEdgeIt() : Edge() { } | 
|---|
| [774] | 269 | OutEdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { } | 
|---|
| [164] | 270 | OutEdgeIt (Invalid i) : Edge(i) { } | 
|---|
| [157] | 271 |  | 
|---|
| [774] | 272 | OutEdgeIt(const SmartGraph& _G,const Node v) | 
|---|
|  | 273 | : Edge(_G.nodes[v.n].first_out), G(&_G) {} | 
|---|
|  | 274 | OutEdgeIt &operator++() { n=G->edges[n].next_out; return *this; } | 
|---|
|  | 275 | //       ///Validity check | 
|---|
|  | 276 | //       operator bool() { return Edge::operator bool(); } | 
|---|
| [104] | 277 | }; | 
|---|
|  | 278 |  | 
|---|
| [164] | 279 | class InEdgeIt : public Edge { | 
|---|
| [774] | 280 | const SmartGraph *G; | 
|---|
| [104] | 281 | friend class SmartGraph; | 
|---|
|  | 282 | public: | 
|---|
| [164] | 283 | InEdgeIt() : Edge() { } | 
|---|
| [774] | 284 | InEdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { } | 
|---|
| [164] | 285 | InEdgeIt (Invalid i) : Edge(i) { } | 
|---|
| [774] | 286 | InEdgeIt(const SmartGraph& _G,Node v) | 
|---|
|  | 287 | : Edge(_G.nodes[v.n].first_in), G(&_G) { } | 
|---|
|  | 288 | InEdgeIt &operator++() { n=G->edges[n].next_in; return *this; } | 
|---|
|  | 289 | //       ///Validity check | 
|---|
|  | 290 | //       operator bool() { return Edge::operator bool(); } | 
|---|
| [104] | 291 | }; | 
|---|
| [105] | 292 |  | 
|---|
| [104] | 293 | }; | 
|---|
| [185] | 294 |  | 
|---|
|  | 295 | ///Graph for bidirectional edges. | 
|---|
|  | 296 |  | 
|---|
|  | 297 | ///The purpose of this graph structure is to handle graphs | 
|---|
|  | 298 | ///having bidirectional edges. Here the function \c addEdge(u,v) adds a pair | 
|---|
| [186] | 299 | ///of oppositely directed edges. | 
|---|
|  | 300 | ///There is a new edge map type called | 
|---|
|  | 301 | ///\ref SymSmartGraph::SymEdgeMap "SymEdgeMap" | 
|---|
|  | 302 | ///that complements this | 
|---|
|  | 303 | ///feature by | 
|---|
|  | 304 | ///storing shared values for the edge pairs. The usual | 
|---|
| [880] | 305 | ///\ref Graph::EdgeMap "EdgeMap" | 
|---|
| [186] | 306 | ///can be used | 
|---|
| [185] | 307 | ///as well. | 
|---|
|  | 308 | /// | 
|---|
| [186] | 309 | ///The oppositely directed edge can also be obtained easily | 
|---|
|  | 310 | ///using \ref opposite. | 
|---|
|  | 311 | ///\warning It shares the similarity with \ref SmartGraph that | 
|---|
|  | 312 | ///it is not possible to delete edges or nodes from the graph. | 
|---|
| [880] | 313 | //\sa SmartGraph. | 
|---|
| [185] | 314 |  | 
|---|
|  | 315 | class SymSmartGraph : public SmartGraph | 
|---|
|  | 316 | { | 
|---|
|  | 317 | public: | 
|---|
| [782] | 318 | typedef SymSmartGraph Graph; | 
|---|
|  | 319 |  | 
|---|
| [822] | 320 | /// Creating symmetric map registry. | 
|---|
| [782] | 321 | CREATE_SYM_EDGE_MAP_REGISTRY; | 
|---|
| [822] | 322 | /// Creating symmetric edge map. | 
|---|
| [897] | 323 | CREATE_SYM_EDGE_MAP(ArrayMap); | 
|---|
| [822] | 324 |  | 
|---|
| [186] | 325 |  | 
|---|
| [185] | 326 | SymSmartGraph() : SmartGraph() { } | 
|---|
|  | 327 | SymSmartGraph(const SmartGraph &_g) : SmartGraph(_g) { } | 
|---|
| [398] | 328 | ///Adds a pair of oppositely directed edges to the graph. | 
|---|
| [185] | 329 | Edge addEdge(Node u, Node v) | 
|---|
|  | 330 | { | 
|---|
|  | 331 | Edge e = SmartGraph::addEdge(u,v); | 
|---|
| [798] | 332 | Edge f = SmartGraph::addEdge(v,u); | 
|---|
|  | 333 | sym_edge_maps.add(e); | 
|---|
|  | 334 | sym_edge_maps.add(f); | 
|---|
| [185] | 335 | return e; | 
|---|
|  | 336 | } | 
|---|
|  | 337 |  | 
|---|
| [186] | 338 | ///The oppositely directed edge. | 
|---|
|  | 339 |  | 
|---|
|  | 340 | ///Returns the oppositely directed | 
|---|
|  | 341 | ///pair of the edge \c e. | 
|---|
| [713] | 342 | static Edge opposite(Edge e) | 
|---|
| [185] | 343 | { | 
|---|
|  | 344 | Edge f; | 
|---|
|  | 345 | f.idref() = e.idref() - 2*(e.idref()%2) + 1; | 
|---|
|  | 346 | return f; | 
|---|
|  | 347 | } | 
|---|
|  | 348 |  | 
|---|
|  | 349 |  | 
|---|
|  | 350 | }; | 
|---|
|  | 351 |  | 
|---|
| [407] | 352 | /// @} | 
|---|
| [105] | 353 | } //namespace hugo | 
|---|
| [104] | 354 |  | 
|---|
| [157] | 355 |  | 
|---|
|  | 356 |  | 
|---|
|  | 357 |  | 
|---|
| [590] | 358 | #endif //HUGO_SMART_GRAPH_H | 
|---|