lemon/bits/vector_map.h
author deba
Mon, 12 Sep 2005 11:24:54 +0000
changeset 1681 84e43c7ca1e3
parent 1587 8f1c317ebeb4
child 1703 eb90e3d6bddc
permissions -rw-r--r--
SubGraphAdaptors with edge checking functionality.

Improved grid_graph_demo
alpar@906
     1
/* -*- C++ -*-
ladanyi@1435
     2
 * lemon/vector_map.h - Part of LEMON, a generic C++ optimization library
alpar@906
     3
 *
alpar@1164
     4
 * Copyright (C) 2005 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
alpar@1359
     5
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
alpar@906
     6
 *
alpar@906
     7
 * Permission to use, modify and distribute this software is granted
alpar@906
     8
 * provided that this copyright notice appears in all copies. For
alpar@906
     9
 * precise terms see the accompanying LICENSE file.
alpar@906
    10
 *
alpar@906
    11
 * This software is provided "AS IS" with no warranty of any kind,
alpar@906
    12
 * express or implied, and with no claim as to its suitability for any
alpar@906
    13
 * purpose.
alpar@906
    14
 *
alpar@906
    15
 */
alpar@906
    16
alpar@921
    17
#ifndef LEMON_VECTOR_MAP_H
alpar@921
    18
#define LEMON_VECTOR_MAP_H
deba@822
    19
deba@822
    20
#include <vector>
klao@946
    21
#include <algorithm>
deba@822
    22
deba@1267
    23
#include <lemon/utility.h>
deba@1307
    24
#include <lemon/bits/map_iterator.h>
deba@1307
    25
#include <lemon/bits/alteration_notifier.h>
deba@1669
    26
#include <lemon/concept_check.h>
deba@1669
    27
#include <lemon/concept/maps.h>
deba@822
    28
deba@1669
    29
/// \ingroup graphmapfactory
deba@1669
    30
///
deba@822
    31
///\file
deba@822
    32
///\brief Vector based graph maps.
deba@822
    33
alpar@921
    34
namespace lemon {
deba@1669
    35
deba@1669
    36
  /// \ingroup graphmapfactory
deba@1669
    37
  ///
deba@1669
    38
  /// \brief Graph map based on the std::vector storage.
deba@1669
    39
  ///
klao@946
    40
  /// The VectorMap template class is graph map structure what
klao@946
    41
  /// automatically updates the map when a key is added to or erased from
klao@946
    42
  /// the map. This map factory uses the allocators to implement 
klao@946
    43
  /// the container functionality. This map factory
klao@946
    44
  /// uses the std::vector to implement the container function.
klao@946
    45
  ///
deba@1039
    46
  /// \param Registry The AlterationNotifier that will notify this map.
klao@946
    47
  /// \param IdMap The IdMap type of the graph items.
klao@946
    48
  /// \param Value The value type of the map.
klao@946
    49
  /// 
klao@946
    50
  /// \author Balazs Dezso
klao@946
    51
  	
klao@946
    52
deba@1267
    53
  template <
deba@1267
    54
    typename _Graph, 
deba@1267
    55
    typename _Item,    
deba@1267
    56
    typename _Value
deba@1267
    57
    >
deba@1039
    58
  class VectorMap : public AlterationNotifier<_Item>::ObserverBase {
deba@822
    59
  public:
deba@822
    60
		
klao@946
    61
    /// The graph type of the map. 
klao@946
    62
    typedef _Graph Graph;
klao@946
    63
    /// The key type of the map.
alpar@987
    64
    typedef _Item Key;
klao@946
    65
    /// The id map type of the map.
deba@1039
    66
    typedef AlterationNotifier<_Item> Registry;
klao@946
    67
    /// The value type of the map.
klao@946
    68
    typedef _Value Value;
deba@822
    69
deba@822
    70
    /// The map type.
deba@822
    71
    typedef VectorMap Map;
klao@946
    72
    /// The base class of the map.
klao@946
    73
    typedef typename Registry::ObserverBase Parent;
deba@822
    74
deba@822
    75
  private:
deba@822
    76
		
deba@822
    77
    /// The container type of the map.
deba@822
    78
    typedef std::vector<Value> Container;	
deba@822
    79
deba@822
    80
  public:
deba@822
    81
deba@822
    82
    /// The reference type of the map;
alpar@987
    83
    typedef typename Container::reference Reference;
deba@822
    84
    /// The pointer type of the map;
alpar@987
    85
    typedef typename Container::pointer Pointer;
deba@822
    86
deba@822
    87
    /// The const value type of the map.
alpar@987
    88
    typedef const Value ConstValue;
deba@822
    89
    /// The const reference type of the map;
alpar@987
    90
    typedef typename Container::const_reference ConstReference;
deba@822
    91
    /// The pointer type of the map;
alpar@987
    92
    typedef typename Container::const_pointer ConstPointer;
deba@822
    93
deba@1267
    94
    typedef True FullTypeTag;
deba@1267
    95
klao@946
    96
    /// Constructor to attach the new map into the registry.
deba@937
    97
klao@946
    98
    /// It construates a map and attachs it into the registry.
klao@946
    99
    /// It adds all the items of the graph to the map.
klao@946
   100
     
deba@980
   101
    VectorMap(const Graph& _g) : graph(&_g) {
deba@1039
   102
      attach(_g.getNotifier(_Item()));
klao@946
   103
      build();
klao@946
   104
    }
deba@822
   105
deba@937
   106
    /// Constructor uses given value to initialize the map. 
deba@937
   107
klao@946
   108
    /// It construates a map uses a given value to initialize the map. 
klao@946
   109
    /// It adds all the items of the graph to the map.
klao@946
   110
     
deba@980
   111
    VectorMap(const Graph& _g, const Value& _v) : graph(&_g) { 
deba@1039
   112
      attach(_g.getNotifier(_Item()));
deba@980
   113
      container.resize(graph->maxId(_Item()) + 1, _v);
klao@946
   114
    }
deba@822
   115
deba@1374
   116
    VectorMap(const VectorMap& _copy) 
deba@1374
   117
      : Parent(), graph(_copy.getGraph()) {
deba@980
   118
      if (_copy.attached()) {
deba@980
   119
	attach(*_copy.getRegistry());
deba@980
   120
	container = _copy.container;
deba@822
   121
      }
deba@822
   122
    }
deba@822
   123
klao@946
   124
    virtual ~VectorMap() {
klao@946
   125
      if (attached()) {
klao@946
   126
	detach();
deba@822
   127
      }
klao@946
   128
    }
klao@946
   129
deba@1669
   130
deba@1669
   131
  private:
deba@1669
   132
deba@1669
   133
    VectorMap& operator=(const VectorMap&);
deba@1669
   134
deba@1669
   135
  protected:
deba@1669
   136
deba@1669
   137
    using Parent::attach;
deba@1669
   138
    using Parent::detach;
deba@1669
   139
    using Parent::attached;
deba@1669
   140
klao@946
   141
    const Graph* getGraph() const {
klao@946
   142
      return graph;
deba@822
   143
    }
deba@937
   144
deba@1669
   145
  public:
deba@1669
   146
deba@937
   147
    /// The subcript operator.
deba@937
   148
klao@946
   149
    /// The subscript operator. The map can be subscripted by the
klao@946
   150
    /// actual items of the graph. 
klao@946
   151
     
alpar@987
   152
    Reference operator[](const Key& key) {
deba@980
   153
      return container[graph->id(key)];
deba@822
   154
    } 
deba@822
   155
		
deba@937
   156
    /// The const subcript operator.
deba@937
   157
klao@946
   158
    /// The const subscript operator. The map can be subscripted by the
klao@946
   159
    /// actual items of the graph. 
klao@946
   160
     
alpar@987
   161
    ConstReference operator[](const Key& key) const {
deba@980
   162
      return container[graph->id(key)];
deba@822
   163
    }
deba@822
   164
deba@937
   165
klao@946
   166
    /// The setter function of the map.
klao@946
   167
klao@946
   168
    /// It the same as operator[](key) = value expression.
klao@946
   169
    ///
alpar@987
   170
    void set(const Key& key, const Value& value) {
klao@946
   171
      (*this)[key] = value;
deba@822
   172
    }
klao@946
   173
deba@1669
   174
  protected:
deba@1669
   175
deba@1669
   176
    /// \brief Adds a new key to the map.
deba@1669
   177
    ///		
klao@946
   178
    /// It adds a new key to the map. It called by the observer registry
klao@946
   179
    /// and it overrides the add() member function of the observer base.
klao@946
   180
     
alpar@987
   181
    void add(const Key& key) {
deba@980
   182
      int id = graph->id(key);
deba@822
   183
      if (id >= (int)container.size()) {
deba@822
   184
	container.resize(id + 1);
deba@822
   185
      }
deba@822
   186
    }
deba@937
   187
deba@937
   188
    /// Erases a key from the map.
deba@822
   189
		
klao@946
   190
    /// Erase a key from the map. It called by the observer registry
klao@946
   191
    /// and it overrides the erase() member function of the observer base.     
alpar@987
   192
    void erase(const Key&) {}
deba@822
   193
klao@946
   194
    /// Buildes the map.
klao@946
   195
		
klao@946
   196
    /// It buildes the map. It called by the observer registry
klao@946
   197
    /// and it overrides the build() member function of the observer base.
deba@937
   198
klao@946
   199
    void build() { 
deba@980
   200
      container.resize(graph->maxId(_Item()) + 1);
klao@946
   201
    }
deba@937
   202
klao@946
   203
    /// Clear the map.
klao@946
   204
klao@946
   205
    /// It erase all items from the map. It called by the observer registry
klao@946
   206
    /// and it overrides the clear() member function of the observer base.     
deba@822
   207
    void clear() { 
deba@822
   208
      container.clear();
deba@822
   209
    }
deba@1267
   210
    
deba@822
   211
  private:
deba@822
   212
		
deba@822
   213
    Container container;
klao@946
   214
    const Graph *graph;
deba@822
   215
klao@946
   216
  };
klao@946
   217
deba@822
   218
}
deba@822
   219
deba@822
   220
#endif