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