COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/hugo/smart_graph.h @ 905:5be029d19c98

Last change on this file since 905:5be029d19c98 was 905:5be029d19c98, checked in by Alpar Juttner, 20 years ago

Some code cleaning in id related stuffs

File size: 9.5 KB
RevLine 
[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]22namespace 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   
[904]76    // Create map registries.
[782]77    CREATE_MAP_REGISTRIES;
[904]78    // Create 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
[905]220      friend class SymSmartGraph;
[104]221     
[164]222      friend class Node;
[104]223      friend class NodeIt;
224    protected:
225      int n;
[722]226      friend int SmartGraph::id(Edge e);
[905]227      Edge(int nn) {n=nn;}
[706]228    public:
229      /// An Edge with id \c n.
230
[164]231      Edge() { }
[174]232      Edge (Invalid) { n=-1; }
[164]233      bool operator==(const Edge i) const {return n==i.n;}
234      bool operator!=(const Edge i) const {return n!=i.n;}
235      bool operator<(const Edge i) const {return n<i.n;}
[774]236//       ///Validity check
237//       operator bool() { return n!=-1; }
[905]238
239      ///Set the edge to that have ID \c ID.
240      void setToId(int id) { n=id; }
[774]241   };
[104]242   
[164]243    class EdgeIt : public Edge {
[774]244      const SmartGraph *G;
[104]245      friend class SmartGraph;
246    public:
[774]247      EdgeIt(const SmartGraph& _G) : Edge(_G.edges.size()-1), G(&_G) { }
248      EdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { }
[164]249      EdgeIt (Invalid i) : Edge(i) { }
250      EdgeIt() : Edge() { }
[774]251      EdgeIt &operator++() { --n; return *this; }
252//       ///Validity check
253//       operator bool() { return Edge::operator bool(); }     
[104]254    };
255   
[164]256    class OutEdgeIt : public Edge {
[774]257      const SmartGraph *G;
[104]258      friend class SmartGraph;
259    public:
[164]260      OutEdgeIt() : Edge() { }
[774]261      OutEdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { }
[164]262      OutEdgeIt (Invalid i) : Edge(i) { }
[157]263
[774]264      OutEdgeIt(const SmartGraph& _G,const Node v)
265        : Edge(_G.nodes[v.n].first_out), G(&_G) {}
266      OutEdgeIt &operator++() { n=G->edges[n].next_out; return *this; }
267//       ///Validity check
268//       operator bool() { return Edge::operator bool(); }     
[104]269    };
270   
[164]271    class InEdgeIt : public Edge {
[774]272      const SmartGraph *G;
[104]273      friend class SmartGraph;
274    public:
[164]275      InEdgeIt() : Edge() { }
[774]276      InEdgeIt(const SmartGraph& _G, Edge e) : Edge(e), G(&_G) { }
[164]277      InEdgeIt (Invalid i) : Edge(i) { }
[774]278      InEdgeIt(const SmartGraph& _G,Node v)
279        : Edge(_G.nodes[v.n].first_in), G(&_G) { }
280      InEdgeIt &operator++() { n=G->edges[n].next_in; return *this; }
281//       ///Validity check
282//       operator bool() { return Edge::operator bool(); }     
[104]283    };
[105]284
[104]285  };
[185]286
287  ///Graph for bidirectional edges.
288
289  ///The purpose of this graph structure is to handle graphs
290  ///having bidirectional edges. Here the function \c addEdge(u,v) adds a pair
[186]291  ///of oppositely directed edges.
292  ///There is a new edge map type called
293  ///\ref SymSmartGraph::SymEdgeMap "SymEdgeMap"
294  ///that complements this
295  ///feature by
296  ///storing shared values for the edge pairs. The usual
[880]297  ///\ref Graph::EdgeMap "EdgeMap"
[186]298  ///can be used
[185]299  ///as well.
300  ///
[186]301  ///The oppositely directed edge can also be obtained easily
302  ///using \ref opposite.
303  ///\warning It shares the similarity with \ref SmartGraph that
304  ///it is not possible to delete edges or nodes from the graph.
[880]305  //\sa SmartGraph.
[185]306
307  class SymSmartGraph : public SmartGraph
308  {
309  public:
[782]310    typedef SymSmartGraph Graph;
311
[904]312    // Create symmetric map registry.
[782]313    CREATE_SYM_EDGE_MAP_REGISTRY;
[904]314    // Create symmetric edge map.
[897]315    CREATE_SYM_EDGE_MAP(ArrayMap);
[822]316
[186]317
[185]318    SymSmartGraph() : SmartGraph() { }
319    SymSmartGraph(const SmartGraph &_g) : SmartGraph(_g) { }
[398]320    ///Adds a pair of oppositely directed edges to the graph.
[185]321    Edge addEdge(Node u, Node v)
322    {
323      Edge e = SmartGraph::addEdge(u,v);
[798]324      Edge f = SmartGraph::addEdge(v,u);
325      sym_edge_maps.add(e);
326      sym_edge_maps.add(f);
[185]327      return e;
328    }
329
[186]330    ///The oppositely directed edge.
331
332    ///Returns the oppositely directed
333    ///pair of the edge \c e.
[713]334    static Edge opposite(Edge e)
[185]335    {
336      Edge f;
[905]337      f.n = e.n - 2*(e.n%2) + 1;
[185]338      return f;
339    }
340   
341
342  };
343 
[407]344  /// @} 
[105]345} //namespace hugo
[104]346
[157]347
348
349
[590]350#endif //HUGO_SMART_GRAPH_H
Note: See TracBrowser for help on using the repository browser.