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