Skeleton for paths.
3 #ifndef HUGO_SMART_GRAPH_H
4 #define HUGO_SMART_GRAPH_H
8 ///\brief SmartGraph and SymSmartGraph classes.
13 #include <hugo/invalid.h>
15 #include <hugo/array_map_factory.h>
16 #include <hugo/sym_map_factory.h>
17 #include <hugo/map_registry.h>
19 #include <hugo/map_defines.h>
23 /// \addtogroup graphs
25 // class SymSmartGraph;
27 ///A smart graph class.
29 ///This is a simple and fast graph implementation.
30 ///It is also quite memory efficient, but at the price
31 ///that <b> it does not support node and edge deletion</b>.
32 ///It conforms to the graph interface documented under
33 ///the description of \ref GraphSkeleton.
34 ///\sa \ref GraphSkeleton.
36 ///\todo Some member functions could be \c static.
38 ///\todo A possibly useful functionality: a function saveState() would
39 ///give back a data sturcture X and then the function restoreState(X)
40 ///would remove the nodes and edges added after the call of saveState().
41 ///Of course it should be used as a stack. (Maybe X is not necessary.)
43 ///\author Alpar Juttner
48 int first_in,first_out;
49 NodeT() : first_in(-1), first_out(-1) {}
53 int head, tail, next_in, next_out;
54 //FIXME: is this necessary?
55 EdgeT() : next_in(-1), next_out(-1) {}
58 std::vector<NodeT> nodes;
60 std::vector<EdgeT> edges;
65 typedef SmartGraph Graph;
75 CREATE_MAP_REGISTRIES;
76 CREATE_MAPS(ArrayMapFactory);
80 SmartGraph() : nodes(), edges() { }
81 SmartGraph(const SmartGraph &_g) : nodes(_g.nodes), edges(_g.edges) { }
83 int nodeNum() const { return nodes.size(); } //FIXME: What is this?
84 int edgeNum() const { return edges.size(); } //FIXME: What is this?
86 ///\bug This function does something different than
87 ///its name would suggests...
88 int maxNodeId() const { return nodes.size(); } //FIXME: What is this?
89 ///\bug This function does something different than
90 ///its name would suggests...
91 int maxEdgeId() const { return edges.size(); } //FIXME: What is this?
93 Node tail(Edge e) const { return edges[e.n].tail; }
94 Node head(Edge e) const { return edges[e.n].head; }
96 NodeIt& first(NodeIt& v) const {
97 v=NodeIt(*this); return v; }
98 EdgeIt& first(EdgeIt& e) const {
99 e=EdgeIt(*this); return e; }
100 OutEdgeIt& first(OutEdgeIt& e, const Node v) const {
101 e=OutEdgeIt(*this,v); return e; }
102 InEdgeIt& first(InEdgeIt& e, const Node v) const {
103 e=InEdgeIt(*this,v); return e; }
105 static int id(Node v) { return v.n; }
106 static int id(Edge e) { return e.n; }
109 Node n; n.n=nodes.size();
110 nodes.push_back(NodeT()); //FIXME: Hmmm...
117 Edge addEdge(Node u, Node v) {
118 Edge e; e.n=edges.size(); edges.push_back(EdgeT()); //FIXME: Hmmm...
119 edges[e.n].tail=u.n; edges[e.n].head=v.n;
120 edges[e.n].next_out=nodes[u.n].first_out;
121 edges[e.n].next_in=nodes[v.n].first_in;
122 nodes[u.n].first_out=nodes[v.n].first_in=e.n;
129 /// Finds an edge between two nodes.
131 /// Finds an edge from node \c u to node \c v.
133 /// If \c prev is \ref INVALID (this is the default value), then
134 /// It finds the first edge from \c u to \c v. Otherwise it looks for
135 /// the next edge from \c u to \c v after \c prev.
136 /// \return The found edge or INVALID if there is no such an edge.
137 Edge findEdge(Node u,Node v, Edge prev = INVALID)
139 int e = (prev.n==-1)? nodes[u.n].first_out : edges[prev.n].next_out;
140 while(e!=-1 && edges[e].tail!=v.n) e = edges[e].next_out;
153 friend class SmartGraph;
154 template <typename T> friend class NodeMap;
157 friend class OutEdgeIt;
158 friend class InEdgeIt;
159 friend class SymEdge;
163 friend int SmartGraph::id(Node v);
167 Node (Invalid) { n=-1; }
168 bool operator==(const Node i) const {return n==i.n;}
169 bool operator!=(const Node i) const {return n!=i.n;}
170 bool operator<(const Node i) const {return n<i.n;}
172 // operator bool() { return n!=-1; }
175 class NodeIt : public Node {
177 friend class SmartGraph;
179 NodeIt() : Node() { }
180 NodeIt(const SmartGraph& _G,Node n) : Node(n), G(&_G) { }
181 NodeIt(Invalid i) : Node(i) { }
182 NodeIt(const SmartGraph& _G) : Node(_G.nodes.size()?0:-1), G(&_G) { }
183 NodeIt &operator++() {
184 n=(n+2)%(G->nodes.size()+1)-1;
188 // operator bool() { return Node::operator bool(); }
192 friend class SmartGraph;
193 template <typename T> friend class EdgeMap;
195 //template <typename T> friend class SymSmartGraph::SymEdgeMap;
196 //friend Edge SymSmartGraph::opposite(Edge) const;
202 friend int SmartGraph::id(Edge e);
205 /// An Edge with id \c n.
207 /// \bug It should be
208 /// obtained by a member function of the Graph.
211 Edge (Invalid) { n=-1; }
212 bool operator==(const Edge i) const {return n==i.n;}
213 bool operator!=(const Edge i) const {return n!=i.n;}
214 bool operator<(const Edge i) const {return n<i.n;}
215 ///\bug This is a workaround until somebody tells me how to
216 ///make class \c SymSmartGraph::SymEdgeMap friend of Edge
217 int &idref() {return n;}
218 const int &idref() const {return n;}
220 // operator bool() { return n!=-1; }
223 class EdgeIt : public Edge {
225 friend class SmartGraph;
227 EdgeIt(const SmartGraph& _G) : Edge(_G.edges.size()-1), G(&_G) { }
228 EdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { }
229 EdgeIt (Invalid i) : Edge(i) { }
230 EdgeIt() : Edge() { }
231 ///\bug This is a workaround until somebody tells me how to
232 ///make class \c SymSmartGraph::SymEdgeMap friend of Edge
233 int &idref() {return n;}
234 EdgeIt &operator++() { --n; return *this; }
236 // operator bool() { return Edge::operator bool(); }
239 class OutEdgeIt : public Edge {
241 friend class SmartGraph;
243 OutEdgeIt() : Edge() { }
244 OutEdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { }
245 OutEdgeIt (Invalid i) : Edge(i) { }
247 OutEdgeIt(const SmartGraph& _G,const Node v)
248 : Edge(_G.nodes[v.n].first_out), G(&_G) {}
249 OutEdgeIt &operator++() { n=G->edges[n].next_out; return *this; }
251 // operator bool() { return Edge::operator bool(); }
254 class InEdgeIt : public Edge {
256 friend class SmartGraph;
258 InEdgeIt() : Edge() { }
259 InEdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { }
260 InEdgeIt (Invalid i) : Edge(i) { }
261 InEdgeIt(const SmartGraph& _G,Node v)
262 : Edge(_G.nodes[v.n].first_in), G(&_G) { }
263 InEdgeIt &operator++() { n=G->edges[n].next_in; return *this; }
265 // operator bool() { return Edge::operator bool(); }
270 ///Graph for bidirectional edges.
272 ///The purpose of this graph structure is to handle graphs
273 ///having bidirectional edges. Here the function \c addEdge(u,v) adds a pair
274 ///of oppositely directed edges.
275 ///There is a new edge map type called
276 ///\ref SymSmartGraph::SymEdgeMap "SymEdgeMap"
277 ///that complements this
279 ///storing shared values for the edge pairs. The usual
280 ///\ref GraphSkeleton::EdgeMap "EdgeMap"
284 ///The oppositely directed edge can also be obtained easily
285 ///using \ref opposite.
286 ///\warning It shares the similarity with \ref SmartGraph that
287 ///it is not possible to delete edges or nodes from the graph.
288 //\sa \ref SmartGraph.
290 class SymSmartGraph : public SmartGraph
293 typedef SymSmartGraph Graph;
295 KEEP_NODE_MAP(SmartGraph);
296 KEEP_EDGE_MAP(SmartGraph);
298 CREATE_SYM_EDGE_MAP_REGISTRY;
299 CREATE_SYM_EDGE_MAP_FACTORY(ArrayMapFactory);
300 IMPORT_SYM_EDGE_MAP(SymEdgeMapFactory);
302 SymSmartGraph() : SmartGraph() { }
303 SymSmartGraph(const SmartGraph &_g) : SmartGraph(_g) { }
304 ///Adds a pair of oppositely directed edges to the graph.
305 Edge addEdge(Node u, Node v)
307 Edge e = SmartGraph::addEdge(u,v);
308 SmartGraph::addEdge(v,u);
312 ///The oppositely directed edge.
314 ///Returns the oppositely directed
315 ///pair of the edge \c e.
316 static Edge opposite(Edge e)
319 f.idref() = e.idref() - 2*(e.idref()%2) + 1;
332 #endif //HUGO_SMART_GRAPH_H