src/work/list_graph.h
author marci
Wed, 17 Mar 2004 15:01:04 +0000
changeset 193 84c19824322a
child 208 1e36245f905d
permissions -rw-r--r--
.
marci@174
     1
// -*- c++ -*-
marci@174
     2
#ifndef LIST_GRAPH_H
marci@174
     3
#define LIST_GRAPH_H
marci@174
     4
marci@174
     5
#include <iostream>
marci@174
     6
#include <vector>
marci@174
     7
marci@174
     8
#include <invalid.h>
marci@174
     9
marci@174
    10
namespace hugo {
marci@174
    11
marci@174
    12
  template <typename It>
marci@174
    13
  int count(It it) { 
marci@174
    14
    int i=0;
marci@174
    15
    for( ; it.valid(); ++it) { ++i; } 
marci@174
    16
    return i;
marci@174
    17
  }
marci@174
    18
marci@174
    19
  class ListGraph {
marci@174
    20
    class node_item;
marci@174
    21
    class edge_item;
marci@174
    22
  public:
marci@174
    23
    class Node;
marci@174
    24
    class NodeIt;
marci@174
    25
    class Edge;
marci@174
    26
    class EdgeIt;
marci@174
    27
    class OutEdgeIt;
marci@174
    28
    class InEdgeIt;
marci@174
    29
    class SymEdgeIt;
marci@174
    30
    template <typename T> class NodeMap;
marci@174
    31
    template <typename T> class EdgeMap;
marci@174
    32
  private:
marci@174
    33
    template <typename T> friend class NodeMap;
marci@174
    34
    template <typename T> friend class EdgeMap;
marci@174
    35
 
marci@174
    36
    template <typename T>
marci@174
    37
    class NodeMap {
marci@174
    38
      const ListGraph& G; 
marci@174
    39
      std::vector<T> container;
marci@174
    40
    public:
marci@174
    41
      typedef T ValueType;
marci@174
    42
      typedef Node KeyType;
marci@174
    43
      NodeMap(const ListGraph& _G) : G(_G), container(G.node_id) { }
marci@174
    44
      NodeMap(const ListGraph& _G, T a) : 
marci@174
    45
	G(_G), container(G.node_id, a) { }
marci@174
    46
      void set(Node n, T a) { container[/*G.id(n)*/n.node->id]=a; }
marci@174
    47
      T get(Node n) const { return container[/*G.id(n)*/n.node->id]; }
marci@174
    48
      T& operator[](Node n) { return container[/*G.id(n)*/n.node->id]; }
marci@174
    49
      const T& operator[](Node n) const { 
marci@174
    50
	return container[/*G.id(n)*/n.node->id]; 
marci@174
    51
      }
marci@174
    52
      void update() { container.resize(G.node_id); }
marci@174
    53
      void update(T a) { container.resize(G.node_id, a); }
marci@174
    54
    };
marci@174
    55
marci@174
    56
    template <typename T>
marci@174
    57
    class EdgeMap {
marci@174
    58
      const ListGraph& G; 
marci@174
    59
      std::vector<T> container;
marci@174
    60
    public:
marci@174
    61
      typedef T ValueType;
marci@174
    62
      typedef Edge KeyType;
marci@174
    63
      EdgeMap(const ListGraph& _G) : G(_G), container(G.edge_id) { }
marci@174
    64
      EdgeMap(const ListGraph& _G, T a) : 
marci@174
    65
	G(_G), container(G.edge_id, a) { }
marci@174
    66
      void set(Edge e, T a) { container[/*G.id(e)*/e.edge->id]=a; }
marci@174
    67
      T get(Edge e) const { return container[/*G.id(e)*/e.edge->id]; }
marci@174
    68
      T& operator[](Edge e) { return container[/*G.id(e)*/e.edge->id]; } 
marci@174
    69
      const T& operator[](Edge e) const { 
marci@174
    70
	return container[/*G.id(e)*/e.edge->id]; 
marci@174
    71
      } 
marci@174
    72
      void update() { container.resize(G.edge_id); }
marci@174
    73
      void update(T a) { container.resize(G.edge_id, a); }
marci@174
    74
    };
marci@174
    75
marci@174
    76
    int node_id;
marci@174
    77
    int edge_id;
marci@174
    78
    int _node_num;
marci@174
    79
    int _edge_num;
marci@174
    80
marci@174
    81
    node_item* _first_node;
marci@174
    82
    node_item* _last_node;
marci@174
    83
marci@174
    84
    class node_item {
marci@174
    85
      friend class ListGraph;
marci@174
    86
      template <typename T> friend class NodeMap;
marci@174
    87
      
marci@174
    88
      friend class Node;
marci@174
    89
      friend class NodeIt;
marci@174
    90
      friend class Edge;
marci@174
    91
      friend class EdgeIt;
marci@174
    92
      friend class OutEdgeIt;
marci@174
    93
      friend class InEdgeIt;
marci@174
    94
      friend class SymEdgeIt;
marci@174
    95
      friend std::ostream& operator<<(std::ostream& os, const Node& i);
marci@174
    96
      friend std::ostream& operator<<(std::ostream& os, const Edge& i);
marci@174
    97
      //ListGraph* G;
marci@174
    98
      int id;
marci@174
    99
      edge_item* _first_out_edge;
marci@174
   100
      edge_item* _last_out_edge;
marci@174
   101
      edge_item* _first_in_edge;
marci@174
   102
      edge_item* _last_in_edge;
marci@174
   103
      node_item* _next_node;
marci@174
   104
      node_item* _prev_node;
marci@174
   105
    public:
marci@174
   106
      node_item() { }
marci@174
   107
    };
marci@174
   108
marci@174
   109
    class edge_item {
marci@174
   110
      friend class ListGraph;
marci@174
   111
      template <typename T> friend class EdgeMap;
marci@174
   112
marci@174
   113
      friend class Node;
marci@174
   114
      friend class NodeIt;
marci@174
   115
      friend class Edge;
marci@174
   116
      friend class EdgeIt;
marci@174
   117
      friend class OutEdgeIt;
marci@174
   118
      friend class InEdgeIt;
marci@174
   119
      friend class SymEdgeIt;
marci@174
   120
      friend std::ostream& operator<<(std::ostream& os, const Edge& i);
marci@174
   121
      //ListGraph* G;
marci@174
   122
      int id;
marci@174
   123
      node_item* _tail;
marci@174
   124
      node_item* _head;
marci@174
   125
      edge_item* _next_out;
marci@174
   126
      edge_item* _prev_out;
marci@174
   127
      edge_item* _next_in;
marci@174
   128
      edge_item* _prev_in;
marci@174
   129
    public:
marci@174
   130
      edge_item() { }
marci@174
   131
    };
marci@174
   132
marci@174
   133
    node_item* _add_node() { 
marci@174
   134
      node_item* p=new node_item;
marci@174
   135
      p->id=node_id++;
marci@174
   136
      p->_first_out_edge=0;
marci@174
   137
      p->_last_out_edge=0;
marci@174
   138
      p->_first_in_edge=0;
marci@174
   139
      p->_last_in_edge=0;
marci@174
   140
      p->_prev_node=_last_node;
marci@174
   141
      p->_next_node=0;
marci@174
   142
      if (_last_node) _last_node->_next_node=p;
marci@174
   143
      _last_node=p;
marci@174
   144
      if (!_first_node) _first_node=p;
marci@174
   145
marci@174
   146
      ++_node_num;
marci@174
   147
      return p;
marci@174
   148
    }
marci@174
   149
marci@174
   150
    edge_item* _add_edge(node_item* _tail, node_item* _head) {
marci@174
   151
      edge_item* e=new edge_item;
marci@174
   152
      e->id=edge_id++;
marci@174
   153
      e->_tail=_tail;
marci@174
   154
      e->_head=_head;
marci@174
   155
      
marci@174
   156
      e->_prev_out=_tail->_last_out_edge;
marci@174
   157
      if (_tail->_last_out_edge) (_tail->_last_out_edge)->_next_out=e;
marci@174
   158
      _tail->_last_out_edge=e;
marci@174
   159
      if (!_tail->_first_out_edge) _tail->_first_out_edge=e; 
marci@174
   160
      e->_next_out=0;
marci@174
   161
 
marci@174
   162
      e->_prev_in=_head->_last_in_edge;
marci@174
   163
      if (_head->_last_in_edge) (_head->_last_in_edge)->_next_in=e;
marci@174
   164
      _head->_last_in_edge=e;
marci@174
   165
      if (!_head->_first_in_edge) { _head->_first_in_edge=e; } 
marci@174
   166
      e->_next_in=0;
marci@174
   167
marci@174
   168
      ++_edge_num;
marci@174
   169
      return e;
marci@174
   170
    }
marci@174
   171
marci@174
   172
    //deletes a node which has no out edge and no in edge
marci@174
   173
    void _delete_node(node_item* v) {
marci@174
   174
      if (v->_next_node) (v->_next_node)->_prev_node=v->_prev_node; else 
marci@174
   175
	_last_node=v->_prev_node;
marci@174
   176
      if (v->_prev_node) (v->_prev_node)->_next_node=v->_next_node; else 
marci@174
   177
	_first_node=v->_next_node;
marci@174
   178
marci@174
   179
      delete v;
marci@174
   180
      --_node_num;
marci@174
   181
    }
marci@174
   182
marci@174
   183
    void _delete_edge(edge_item* e) {
marci@174
   184
      if (e->_next_out) (e->_next_out)->_prev_out=e->_prev_out; else 
marci@174
   185
	(e->_tail)->_last_out_edge=e->_prev_out;
marci@174
   186
      if (e->_prev_out) (e->_prev_out)->_next_out=e->_next_out; else 
marci@174
   187
	(e->_tail)->_first_out_edge=e->_next_out;
marci@174
   188
      if (e->_next_in) (e->_next_in)->_prev_in=e->_prev_in; else 
marci@174
   189
	(e->_head)->_last_in_edge=e->_prev_in;
marci@174
   190
      if (e->_prev_in) (e->_prev_in)->_next_in=e->_next_in; else 
marci@174
   191
	(e->_head)->_first_in_edge=e->_next_in;
marci@174
   192
marci@174
   193
      delete e;
marci@174
   194
      --_edge_num;
marci@174
   195
    }
marci@174
   196
marci@174
   197
    void _set_tail(edge_item* e, node_item* _tail) {
marci@174
   198
      if (e->_next_out) (e->_next_out)->_prev_out=e->_prev_out; else 
marci@174
   199
	(e->_tail)->_last_out_edge=e->_prev_out;
marci@174
   200
      if (e->_prev_out) (e->_prev_out)->_next_out=e->_next_out; else 
marci@174
   201
	(e->_tail)->_first_out_edge=e->_next_out;
marci@174
   202
      
marci@174
   203
      e->_tail=_tail;
marci@174
   204
      
marci@174
   205
      e->_prev_out=_tail->_last_out_edge;
marci@174
   206
      if (_tail->_last_out_edge) (_tail->_last_out_edge)->_next_out=e;
marci@174
   207
      _tail->_last_out_edge=e;
marci@174
   208
      if (!_tail->_first_out_edge) _tail->_first_out_edge=e; 
marci@174
   209
      e->_next_out=0;
marci@174
   210
    }
marci@174
   211
marci@174
   212
    void _set_head(edge_item* e, node_item* _head) {
marci@174
   213
      if (e->_next_in) (e->_next_in)->_prev_in=e->_prev_in; else 
marci@174
   214
	(e->_head)->_last_in_edge=e->_prev_in;
marci@174
   215
      if (e->_prev_in) (e->_prev_in)->_next_in=e->_next_in; else 
marci@174
   216
	(e->_head)->_first_in_edge=e->_next_in;
marci@174
   217
      
marci@174
   218
      e->_head=_head;
marci@174
   219
      
marci@174
   220
      e->_prev_in=_head->_last_in_edge;
marci@174
   221
      if (_head->_last_in_edge) (_head->_last_in_edge)->_next_in=e;
marci@174
   222
      _head->_last_in_edge=e;
marci@174
   223
      if (!_head->_first_in_edge) { _head->_first_in_edge=e; } 
marci@174
   224
      e->_next_in=0;
marci@174
   225
    }
marci@174
   226
marci@174
   227
  public:
marci@174
   228
marci@174
   229
    /* default constructor */
marci@174
   230
marci@174
   231
    ListGraph() : node_id(0), edge_id(0), _node_num(0), _edge_num(0), _first_node(0), _last_node(0) { }
marci@174
   232
    
marci@174
   233
    ~ListGraph() { 
marci@174
   234
      while (first<NodeIt>().valid()) erase(first<NodeIt>());
marci@174
   235
    }
marci@174
   236
marci@174
   237
    int nodeNum() const { return _node_num; }
marci@174
   238
    int edgeNum() const { return _edge_num; }
marci@174
   239
marci@174
   240
    /* functions to construct iterators from the graph, or from each other */
marci@174
   241
marci@174
   242
    //NodeIt firstNode() const { return NodeIt(*this); }
marci@174
   243
    //EdgeIt firstEdge() const { return EdgeIt(*this); }
marci@174
   244
    
marci@174
   245
    //OutEdgeIt firstOutEdge(const Node v) const { return OutEdgeIt(v); }
marci@174
   246
    //InEdgeIt firstInEdge(const Node v) const { return InEdgeIt(v); }
marci@174
   247
    //SymEdgeIt firstSymEdge(const Node v) const { return SymEdgeIt(v); }
marci@174
   248
    Node tail(Edge e) const { return e.tailNode(); }
marci@174
   249
    Node head(Edge e) const { return e.headNode(); }
marci@174
   250
marci@174
   251
    Node aNode(const OutEdgeIt& e) const { return e.aNode(); }
marci@174
   252
    Node aNode(const InEdgeIt& e) const { return e.aNode(); }
marci@174
   253
    Node aNode(const SymEdgeIt& e) const { return e.aNode(); }
marci@174
   254
marci@174
   255
    Node bNode(const OutEdgeIt& e) const { return e.bNode(); }
marci@174
   256
    Node bNode(const InEdgeIt& e) const { return e.bNode(); }
marci@174
   257
    Node bNode(const SymEdgeIt& e) const { return e.bNode(); }
marci@174
   258
marci@174
   259
    //Node invalid_node() { return Node(); }
marci@174
   260
    //Edge invalid_edge() { return Edge(); }
marci@174
   261
    //OutEdgeIt invalid_out_edge() { return OutEdgeIt(); }
marci@174
   262
    //InEdgeIt invalid_in_edge() { return InEdgeIt(); }
marci@174
   263
    //SymEdgeIt invalid_sym_edge() { return SymEdgeIt(); }
marci@174
   264
marci@174
   265
    /* same methods in other style */
marci@174
   266
    /* for experimental purpose */
marci@174
   267
marci@174
   268
    NodeIt& /*getF*/first(NodeIt& v) const { 
marci@174
   269
      v=NodeIt(*this); return v; }
marci@174
   270
    EdgeIt& /*getF*/first(EdgeIt& e) const { 
marci@174
   271
      e=EdgeIt(*this); return e; }
marci@174
   272
    OutEdgeIt& /*getF*/first(OutEdgeIt& e, Node v) const { 
marci@174
   273
      e=OutEdgeIt(*this, v); return e; }
marci@174
   274
    InEdgeIt& /*getF*/first(InEdgeIt& e, Node v) const { 
marci@174
   275
      e=InEdgeIt(*this, v); return e; }
marci@174
   276
    SymEdgeIt& /*getF*/first(SymEdgeIt& e, Node v) const { 
marci@174
   277
      e=SymEdgeIt(*this, v); return e; }
marci@174
   278
    //void getTail(Node& n, const Edge& e) const { n=tail(e); }
marci@174
   279
    //void getHead(Node& n, const Edge& e) const { n=head(e); }
marci@174
   280
marci@174
   281
    //void getANode(Node& n, const OutEdgeIt& e) const { n=e.aNode(); }
marci@174
   282
    //void getANode(Node& n, const InEdgeIt& e) const { n=e.aNode(); }
marci@174
   283
    //void getANode(Node& n, const SymEdgeIt& e) const { n=e.aNode(); }
marci@174
   284
    //void getBNode(Node& n, const OutEdgeIt& e) const { n=e.bNode(); }
marci@174
   285
    //void getBNode(Node& n, const InEdgeIt& e) const { n=e.bNode(); }
marci@174
   286
    //void getBNode(Node& n, const SymEdgeIt& e) const { n=e.bNode(); }
marci@174
   287
    //void get_invalid(Node& n) { n=Node(); }
marci@174
   288
    //void get_invalid(Edge& e) { e=Edge(); }
marci@174
   289
    //void get_invalid(OutEdgeIt& e) { e=OutEdgeIt(); }
marci@174
   290
    //void get_invalid(InEdgeIt& e) { e=InEdgeIt(); }
marci@174
   291
    //void get_invalid(SymEdgeIt& e) { e=SymEdgeIt(); }
marci@174
   292
marci@174
   293
    template< typename It >
marci@174
   294
    It first() const { 
marci@174
   295
      It e;
marci@174
   296
      /*getF*/first(e);
marci@174
   297
      return e; 
marci@174
   298
    }
marci@174
   299
marci@174
   300
    template< typename It >
marci@174
   301
    It first(Node v) const { 
marci@174
   302
      It e;
marci@174
   303
      /*getF*/first(e, v);
marci@174
   304
      return e; 
marci@174
   305
    }
marci@174
   306
marci@174
   307
    bool valid(Node n) const { return n.valid(); }
marci@174
   308
    bool valid(Edge e) const { return e.valid(); }
marci@174
   309
    
marci@174
   310
    template <typename It> It getNext(It it) const { 
marci@174
   311
      It tmp(it); return next(tmp); }
marci@174
   312
    template <typename It> It& next(It& it) const { return ++it; }
marci@174
   313
   
marci@174
   314
marci@174
   315
    /* for getting id's of graph objects */
marci@174
   316
    /* these are important for the implementation of property vectors */
marci@174
   317
marci@174
   318
    int id(Node v) const { return v.node->id; }
marci@174
   319
    int id(Edge e) const { return e.edge->id; }
marci@174
   320
marci@174
   321
    /* adding nodes and edges */
marci@174
   322
marci@174
   323
    Node addNode() { return Node(_add_node()); }
marci@174
   324
    Edge addEdge(Node u, Node v) {
marci@174
   325
      return Edge(_add_edge(u.node, v.node)); 
marci@174
   326
    }
marci@174
   327
marci@174
   328
    void erase(Node i) { 
marci@174
   329
      while (first<OutEdgeIt>(i).valid()) erase(first<OutEdgeIt>(i));
marci@174
   330
      while (first<InEdgeIt>(i).valid()) erase(first<InEdgeIt>(i));
marci@174
   331
      _delete_node(i.node); 
marci@174
   332
    }
marci@174
   333
  
marci@174
   334
    void erase(Edge e) { _delete_edge(e.edge); }
marci@174
   335
marci@174
   336
    void clear() { 
marci@174
   337
      while (first<NodeIt>().valid()) erase(first<NodeIt>());
marci@174
   338
    }
marci@174
   339
marci@174
   340
    void setTail(Edge e, Node tail) {
marci@174
   341
      _set_tail(e.edge, tail.node); 
marci@174
   342
    }
marci@174
   343
marci@174
   344
    void setHead(Edge e, Node head) {
marci@174
   345
      _set_head(e.edge, head.node); 
marci@174
   346
    }
marci@174
   347
marci@174
   348
    /* stream operations, for testing purpose */
marci@174
   349
marci@174
   350
    friend std::ostream& operator<<(std::ostream& os, const Node& i) { 
marci@174
   351
      os << i.node->id; return os; 
marci@174
   352
    }
marci@174
   353
    friend std::ostream& operator<<(std::ostream& os, const Edge& i) { 
marci@174
   354
      os << "(" << i.edge->_tail->id << "--" << i.edge->id << "->" << i.edge->_head->id << ")"; 
marci@174
   355
      return os; 
marci@174
   356
    }
marci@174
   357
marci@174
   358
    class Node {
marci@174
   359
      friend class ListGraph;
marci@174
   360
      template <typename T> friend class NodeMap;
marci@174
   361
marci@174
   362
      friend class Edge;
marci@174
   363
      friend class OutEdgeIt;
marci@174
   364
      friend class InEdgeIt;
marci@174
   365
      friend class SymEdgeIt;
marci@174
   366
      //public:  //FIXME: It is required by op= of NodeIt
marci@174
   367
    protected:
marci@174
   368
      node_item* node;
marci@174
   369
    protected:
marci@174
   370
      friend int ListGraph::id(Node v) const; 
marci@174
   371
    public:
marci@174
   372
      Node() /*: node(0)*/ { }
marci@174
   373
      Node(const Invalid&) : node(0) { }
marci@174
   374
    protected:
marci@174
   375
      Node(node_item* _node) : node(_node) { }
marci@174
   376
      bool valid() const { return (node); }
marci@174
   377
    public:
marci@174
   378
      //void makeInvalid() { node=0; }
marci@174
   379
      friend bool operator==(Node u, Node v) { return v.node==u.node; } 
marci@174
   380
      friend bool operator!=(Node u, Node v) { return v.node!=u.node; } 
marci@174
   381
      friend std::ostream& operator<<(std::ostream& os, const Node& i);
marci@174
   382
    };
marci@174
   383
    
marci@174
   384
    class NodeIt : public Node {
marci@174
   385
      friend class ListGraph;
marci@174
   386
      //protected:
marci@174
   387
    public: //for everybody but marci
marci@174
   388
      NodeIt(const ListGraph& G) : Node(G._first_node) { }
marci@174
   389
    public:
marci@174
   390
      NodeIt() : Node() { }
marci@174
   391
      NodeIt(const Invalid& i) : Node(i) { }
marci@174
   392
    protected:
marci@174
   393
      NodeIt(node_item* v) : Node(v) { }
marci@174
   394
      NodeIt& operator++() { node=node->_next_node; return *this; }
marci@174
   395
      //FIXME::
marci@174
   396
      //      NodeIt& operator=(const Node& e)
marci@174
   397
      //      { node=e.node; return *this; }
marci@174
   398
    };
marci@174
   399
marci@174
   400
    class Edge {
marci@174
   401
      friend class ListGraph;
marci@174
   402
      template <typename T> friend class EdgeMap;
marci@174
   403
      
marci@174
   404
      friend class Node;
marci@174
   405
      friend class NodeIt;
marci@174
   406
    protected:
marci@174
   407
      edge_item* edge;
marci@174
   408
      friend int ListGraph::id(Edge e) const;
marci@174
   409
    public:
marci@174
   410
      Edge() /*: edge(0)*/ { }
marci@174
   411
      Edge(const Invalid&) : edge(0) { }
marci@174
   412
      //Edge() { }
marci@174
   413
    protected:
marci@174
   414
      Edge(edge_item* _edge) : edge(_edge) { }
marci@174
   415
      bool valid() const { return (edge); }
marci@174
   416
    public:
marci@174
   417
      //void makeInvalid() { edge=0; }
marci@174
   418
      friend bool operator==(Edge u, Edge v) { return v.edge==u.edge; } 
marci@174
   419
      friend bool operator!=(Edge u, Edge v) { return v.edge!=u.edge; } 
marci@174
   420
    protected:
marci@174
   421
      Node tailNode() const { return Node(edge->_tail); }
marci@174
   422
      Node headNode() const { return Node(edge->_head); }
marci@174
   423
    public:
marci@174
   424
      friend std::ostream& operator<<(std::ostream& os, const Edge& i);
marci@174
   425
    };
marci@174
   426
    
marci@174
   427
    class EdgeIt : public Edge {
marci@174
   428
      friend class ListGraph;
marci@174
   429
      //protected: 
marci@174
   430
    public: //for alpar
marci@174
   431
      EdgeIt(const ListGraph& G) {
marci@174
   432
	node_item* v=G._first_node;
marci@174
   433
	if (v) edge=v->_first_out_edge; else edge=0;
marci@174
   434
	while (v && !edge) { v=v->_next_node; if (v) edge=v->_first_out_edge; }
marci@174
   435
      }
marci@174
   436
    public:
marci@174
   437
      EdgeIt() : Edge() { }
marci@174
   438
      EdgeIt(const Invalid& i) : Edge(i) { }
marci@174
   439
    protected:
marci@174
   440
      EdgeIt(edge_item* _e) : Edge(_e) { }
marci@174
   441
      EdgeIt& operator++() { 
marci@174
   442
	node_item* v=edge->_tail;
marci@174
   443
	edge=edge->_next_out; 
marci@174
   444
	while (v && !edge) { v=v->_next_node; if (v) edge=v->_first_out_edge; }
marci@174
   445
	return *this;
marci@174
   446
      }
marci@174
   447
    };
marci@174
   448
    
marci@174
   449
    class OutEdgeIt : public Edge {
marci@174
   450
      friend class ListGraph;
marci@174
   451
      //node_item* v;
marci@174
   452
      //protected: 
marci@174
   453
    protected: //for alpar
marci@174
   454
      OutEdgeIt(const Node& _v) /*: v(_v.node)*/ { edge=_v.node->_first_out_edge; }
marci@174
   455
    public:
marci@174
   456
      OutEdgeIt() : Edge()/*, v(0)*/ { }
marci@174
   457
      OutEdgeIt(const Invalid& i) : Edge(i) { }
marci@174
   458
      OutEdgeIt(const ListGraph& G, Node _v) /*: v(_v.node)*/ { edge=_v.node->_first_out_edge; }
marci@174
   459
    protected:
marci@174
   460
      OutEdgeIt& operator++() { edge=edge->_next_out; return *this; }
marci@174
   461
    protected:
marci@174
   462
      Node aNode() const { return Node(edge->_tail); }
marci@174
   463
      Node bNode() const { return Node(edge->_head); }
marci@174
   464
    };
marci@174
   465
    
marci@174
   466
    class InEdgeIt : public Edge {
marci@174
   467
      friend class ListGraph;
marci@174
   468
      //node_item* v;
marci@174
   469
      //protected:
marci@174
   470
    protected: //for alpar
marci@174
   471
      InEdgeIt(const Node& _v) /*: v(_v.node)*/ { edge=_v.node->_first_in_edge; }
marci@174
   472
    public:
marci@174
   473
      InEdgeIt() : Edge()/*, v(0)*/ { }
marci@174
   474
      InEdgeIt(const Invalid& i) : Edge(i) { }
marci@174
   475
      InEdgeIt(const ListGraph& G, Node _v) /*: v(_v.node)*/ { edge=_v.node->_first_in_edge; }
marci@174
   476
    protected:
marci@174
   477
      InEdgeIt& operator++() { edge=edge->_next_in; return *this; }
marci@174
   478
    protected:
marci@174
   479
      Node aNode() const { return Node(edge->_head); }
marci@174
   480
      Node bNode() const { return Node(edge->_tail); }
marci@174
   481
    };
marci@174
   482
marci@174
   483
    class SymEdgeIt : public Edge {
marci@174
   484
      friend class ListGraph;
marci@174
   485
      bool out_or_in; //1 iff out, 0 iff in
marci@174
   486
      //node_item* v;
marci@174
   487
      //protected:
marci@174
   488
    public: //for alpar
marci@174
   489
      SymEdgeIt(const Node& _v) /*: v(_v.node)*/ { 
marci@174
   490
	out_or_in=1;
marci@174
   491
	edge=_v.node->_first_out_edge; 
marci@174
   492
	if (!edge) { edge=_v.node->_first_in_edge; out_or_in=0; }
marci@174
   493
      }
marci@174
   494
    public:
marci@174
   495
      SymEdgeIt() : Edge() /*, v(0)*/ { }
marci@174
   496
      SymEdgeIt(const Invalid& i) : Edge(i) { }
marci@174
   497
      SymEdgeIt(const ListGraph& G, Node _v) /*: v(_v.node)*/ { 
marci@174
   498
	out_or_in=1;
marci@174
   499
	edge=_v.node->_first_out_edge; 
marci@174
   500
	if (!edge) { edge=_v.node->_first_in_edge; out_or_in=0; }
marci@174
   501
      }
marci@174
   502
    protected:
marci@174
   503
      SymEdgeIt& operator++() { 
marci@174
   504
	if (out_or_in) { 
marci@174
   505
	  node_item* v=edge->_tail;
marci@174
   506
	  edge=edge->_next_out; 
marci@174
   507
	  if (!edge) { out_or_in=0; edge=v->_first_in_edge; }
marci@174
   508
	} else {
marci@174
   509
	  edge=edge->_next_in; 
marci@174
   510
	}
marci@174
   511
	return *this;
marci@174
   512
      }
marci@174
   513
    protected:
marci@174
   514
      Node aNode() const { 
marci@174
   515
	return (out_or_in) ? Node(edge->_tail) : Node(edge->_head); }
marci@174
   516
      Node bNode() const { 
marci@174
   517
	return (out_or_in) ? Node(edge->_head) : Node(edge->_tail); }
marci@174
   518
    };
marci@174
   519
marci@174
   520
  };
marci@174
   521
marci@174
   522
//   template< typename T >
marci@174
   523
//   T ListGraph::first() const { 
marci@174
   524
//     std::cerr << "Invalid use of template<typemane T> T ListGraph::first<T>();" << std::endl; 
marci@174
   525
//     return T(); 
marci@174
   526
//   }
marci@174
   527
marci@174
   528
//   template<>
marci@174
   529
//   ListGraph::NodeIt ListGraph::first<ListGraph::NodeIt>() const { 
marci@174
   530
//     return firstNode(); 
marci@174
   531
//   }
marci@174
   532
marci@174
   533
//   template<>
marci@174
   534
//   ListGraph::EdgeIt ListGraph::first<ListGraph::EdgeIt>() const { 
marci@174
   535
//     return firstEdge(); 
marci@174
   536
//   }
marci@174
   537
marci@174
   538
//   template< typename T >
marci@174
   539
//   T ListGraph::first(ListGraph::Node v) const {
marci@174
   540
//     std::cerr << "Invalid use of template<typemane T> T ListGraph::first<T>(ListGRaph::Node);" << std::endl; 
marci@174
   541
//     return T(); 
marci@174
   542
//   } 
marci@174
   543
marci@174
   544
//   template<>
marci@174
   545
//   ListGraph::OutEdgeIt ListGraph::first<ListGraph::OutEdgeIt>(const ListGraph::Node v) const { 
marci@174
   546
//     return firstOutEdge(v); 
marci@174
   547
//   }
marci@174
   548
marci@174
   549
//   template<>
marci@174
   550
//   ListGraph::InEdgeIt ListGraph::first<ListGraph::InEdgeIt>(const ListGraph::Node v) const { 
marci@174
   551
//     return firstInEdge(v); 
marci@174
   552
//   }
marci@174
   553
marci@174
   554
//   template<>
marci@174
   555
//   ListGraph::SymEdgeIt ListGraph::first<ListGraph::SymEdgeIt>(const ListGraph::Node v) const { 
marci@174
   556
//     return firstSymEdge(v); 
marci@174
   557
//   }
marci@174
   558
marci@174
   559
marci@174
   560
} //namespace hugo
marci@174
   561
marci@174
   562
#endif //LIST_GRAPH_H