lemon/bits/vector_map.h
author Balazs Dezso <deba@inf.elte.hu>
Sun, 20 Jan 2008 20:43:48 +0100
changeset 57 c1acf0018c0a
child 107 31a2e6d28f61
permissions -rw-r--r--
Port ListDigraph and ListGraph from svn -r 3433
Details:
- port Digraph and Graph concepts
- port ListDigraph and ListGraph
- port Basic graph constructing tools
- port Digraph and Graph tests
deba@57
     1
/* -*- C++ -*-
deba@57
     2
 *
deba@57
     3
 * This file is a part of LEMON, a generic C++ optimization library
deba@57
     4
 *
deba@57
     5
 * Copyright (C) 2003-2007
deba@57
     6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
deba@57
     7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
deba@57
     8
 *
deba@57
     9
 * Permission to use, modify and distribute this software is granted
deba@57
    10
 * provided that this copyright notice appears in all copies. For
deba@57
    11
 * precise terms see the accompanying LICENSE file.
deba@57
    12
 *
deba@57
    13
 * This software is provided "AS IS" with no warranty of any kind,
deba@57
    14
 * express or implied, and with no claim as to its suitability for any
deba@57
    15
 * purpose.
deba@57
    16
 *
deba@57
    17
 */
deba@57
    18
deba@57
    19
#ifndef LEMON_BITS_VECTOR_MAP_H
deba@57
    20
#define LEMON_BITS_VECTOR_MAP_H
deba@57
    21
deba@57
    22
#include <vector>
deba@57
    23
#include <algorithm>
deba@57
    24
deba@57
    25
#include <lemon/bits/traits.h>
deba@57
    26
#include <lemon/bits/utility.h>
deba@57
    27
deba@57
    28
#include <lemon/bits/alteration_notifier.h>
deba@57
    29
deba@57
    30
#include <lemon/concept_check.h>
deba@57
    31
#include <lemon/concepts/maps.h>
deba@57
    32
deba@57
    33
///\ingroup graphbits
deba@57
    34
///
deba@57
    35
///\file
deba@57
    36
///\brief Vector based graph maps.
deba@57
    37
namespace lemon {
deba@57
    38
deba@57
    39
  /// \ingroup graphbits
deba@57
    40
  ///
deba@57
    41
  /// \brief Graph map based on the std::vector storage.
deba@57
    42
  ///
deba@57
    43
  /// The VectorMap template class is graph map structure what
deba@57
    44
  /// automatically updates the map when a key is added to or erased from
deba@57
    45
  /// the map. This map type uses the std::vector to store the values.
deba@57
    46
  ///
deba@57
    47
  /// \param Notifier The AlterationNotifier that will notify this map.
deba@57
    48
  /// \param Item The item type of the graph items.
deba@57
    49
  /// \param Value The value type of the map.
deba@57
    50
  /// 
deba@57
    51
  /// \author Balazs Dezso  	
deba@57
    52
  template <typename _Graph, typename _Item, typename _Value>
deba@57
    53
  class VectorMap 
deba@57
    54
    : public ItemSetTraits<_Graph, _Item>::ItemNotifier::ObserverBase {
deba@57
    55
  private:
deba@57
    56
		
deba@57
    57
    /// The container type of the map.
deba@57
    58
    typedef std::vector<_Value> Container;	
deba@57
    59
deba@57
    60
  public:
deba@57
    61
deba@57
    62
    /// The graph type of the map. 
deba@57
    63
    typedef _Graph Graph;
deba@57
    64
    /// The item type of the map.
deba@57
    65
    typedef _Item Item;
deba@57
    66
    /// The reference map tag.
deba@57
    67
    typedef True ReferenceMapTag;
deba@57
    68
deba@57
    69
    /// The key type of the map.
deba@57
    70
    typedef _Item Key;
deba@57
    71
    /// The value type of the map.
deba@57
    72
    typedef _Value Value;
deba@57
    73
deba@57
    74
    /// The notifier type.
deba@57
    75
    typedef typename ItemSetTraits<_Graph, _Item>::ItemNotifier Notifier;
deba@57
    76
deba@57
    77
    /// The map type.
deba@57
    78
    typedef VectorMap Map;
deba@57
    79
    /// The base class of the map.
deba@57
    80
    typedef typename Notifier::ObserverBase Parent;
deba@57
    81
deba@57
    82
    /// The reference type of the map;
deba@57
    83
    typedef typename Container::reference Reference;
deba@57
    84
    /// The const reference type of the map;
deba@57
    85
    typedef typename Container::const_reference ConstReference;
deba@57
    86
deba@57
    87
deba@57
    88
    /// \brief Constructor to attach the new map into the notifier.
deba@57
    89
    ///
deba@57
    90
    /// It constructs a map and attachs it into the notifier.
deba@57
    91
    /// It adds all the items of the graph to the map.
deba@57
    92
    VectorMap(const Graph& graph) {
deba@57
    93
      Parent::attach(graph.notifier(Item()));
deba@57
    94
      container.resize(Parent::notifier()->maxId() + 1);
deba@57
    95
    }
deba@57
    96
deba@57
    97
    /// \brief Constructor uses given value to initialize the map. 
deba@57
    98
    ///
deba@57
    99
    /// It constructs a map uses a given value to initialize the map. 
deba@57
   100
    /// It adds all the items of the graph to the map.
deba@57
   101
    VectorMap(const Graph& graph, const Value& value) {
deba@57
   102
      Parent::attach(graph.notifier(Item()));
deba@57
   103
      container.resize(Parent::notifier()->maxId() + 1, value);
deba@57
   104
    }
deba@57
   105
deba@57
   106
    /// \brief Copy constructor
deba@57
   107
    ///
deba@57
   108
    /// Copy constructor.
deba@57
   109
    VectorMap(const VectorMap& _copy) : Parent() {
deba@57
   110
      if (_copy.attached()) {
deba@57
   111
	Parent::attach(*_copy.notifier());
deba@57
   112
	container = _copy.container;
deba@57
   113
      }
deba@57
   114
    }
deba@57
   115
deba@57
   116
    /// \brief Assign operator.
deba@57
   117
    ///
deba@57
   118
    /// This operator assigns for each item in the map the
deba@57
   119
    /// value mapped to the same item in the copied map.  
deba@57
   120
    /// The parameter map should be indiced with the same
deba@57
   121
    /// itemset because this assign operator does not change
deba@57
   122
    /// the container of the map. 
deba@57
   123
    VectorMap& operator=(const VectorMap& cmap) {
deba@57
   124
      return operator=<VectorMap>(cmap);
deba@57
   125
    }
deba@57
   126
deba@57
   127
deba@57
   128
    /// \brief Template assign operator.
deba@57
   129
    ///
deba@57
   130
    /// The given parameter should be conform to the ReadMap
deba@57
   131
    /// concecpt and could be indiced by the current item set of
deba@57
   132
    /// the NodeMap. In this case the value for each item
deba@57
   133
    /// is assigned by the value of the given ReadMap. 
deba@57
   134
    template <typename CMap>
deba@57
   135
    VectorMap& operator=(const CMap& cmap) {
deba@57
   136
      checkConcept<concepts::ReadMap<Key, _Value>, CMap>();
deba@57
   137
      const typename Parent::Notifier* nf = Parent::notifier();
deba@57
   138
      Item it;
deba@57
   139
      for (nf->first(it); it != INVALID; nf->next(it)) {
deba@57
   140
        set(it, cmap[it]);
deba@57
   141
      }
deba@57
   142
      return *this;
deba@57
   143
    }
deba@57
   144
    
deba@57
   145
  public:
deba@57
   146
deba@57
   147
    /// \brief The subcript operator.
deba@57
   148
    ///
deba@57
   149
    /// The subscript operator. The map can be subscripted by the
deba@57
   150
    /// actual items of the graph.      
deba@57
   151
    Reference operator[](const Key& key) {
deba@57
   152
      return container[Parent::notifier()->id(key)];
deba@57
   153
    } 
deba@57
   154
		
deba@57
   155
    /// \brief The const subcript operator.
deba@57
   156
    ///
deba@57
   157
    /// The const subscript operator. The map can be subscripted by the
deba@57
   158
    /// actual items of the graph. 
deba@57
   159
    ConstReference operator[](const Key& key) const {
deba@57
   160
      return container[Parent::notifier()->id(key)];
deba@57
   161
    }
deba@57
   162
deba@57
   163
deba@57
   164
    /// \brief The setter function of the map.
deba@57
   165
    ///
deba@57
   166
    /// It the same as operator[](key) = value expression.
deba@57
   167
    void set(const Key& key, const Value& value) {
deba@57
   168
      (*this)[key] = value;
deba@57
   169
    }
deba@57
   170
deba@57
   171
  protected:
deba@57
   172
deba@57
   173
    /// \brief Adds a new key to the map.
deba@57
   174
    ///		
deba@57
   175
    /// It adds a new key to the map. It called by the observer notifier
deba@57
   176
    /// and it overrides the add() member function of the observer base.     
deba@57
   177
    virtual void add(const Key& key) {
deba@57
   178
      int id = Parent::notifier()->id(key);
deba@57
   179
      if (id >= int(container.size())) {
deba@57
   180
	container.resize(id + 1);
deba@57
   181
      }
deba@57
   182
    }
deba@57
   183
deba@57
   184
    /// \brief Adds more new keys to the map.
deba@57
   185
    ///		
deba@57
   186
    /// It adds more new keys to the map. It called by the observer notifier
deba@57
   187
    /// and it overrides the add() member function of the observer base.     
deba@57
   188
    virtual void add(const std::vector<Key>& keys) {
deba@57
   189
      int max = container.size() - 1;
deba@57
   190
      for (int i = 0; i < int(keys.size()); ++i) {
deba@57
   191
        int id = Parent::notifier()->id(keys[i]);
deba@57
   192
        if (id >= max) {
deba@57
   193
          max = id;
deba@57
   194
        }
deba@57
   195
      }
deba@57
   196
      container.resize(max + 1);
deba@57
   197
    }
deba@57
   198
deba@57
   199
    /// \brief Erase a key from the map.
deba@57
   200
    ///
deba@57
   201
    /// Erase a key from the map. It called by the observer notifier
deba@57
   202
    /// and it overrides the erase() member function of the observer base.     
deba@57
   203
    virtual void erase(const Key& key) {
deba@57
   204
      container[Parent::notifier()->id(key)] = Value();
deba@57
   205
    }
deba@57
   206
deba@57
   207
    /// \brief Erase more keys from the map.
deba@57
   208
    ///
deba@57
   209
    /// Erase more keys from the map. It called by the observer notifier
deba@57
   210
    /// and it overrides the erase() member function of the observer base.     
deba@57
   211
    virtual void erase(const std::vector<Key>& keys) {
deba@57
   212
      for (int i = 0; i < int(keys.size()); ++i) {
deba@57
   213
	container[Parent::notifier()->id(keys[i])] = Value();
deba@57
   214
      }
deba@57
   215
    }
deba@57
   216
    
deba@57
   217
    /// \brief Buildes the map.
deba@57
   218
    ///	
deba@57
   219
    /// It buildes the map. It called by the observer notifier
deba@57
   220
    /// and it overrides the build() member function of the observer base.
deba@57
   221
    virtual void build() { 
deba@57
   222
      int size = Parent::notifier()->maxId() + 1;
deba@57
   223
      container.reserve(size);
deba@57
   224
      container.resize(size);
deba@57
   225
    }
deba@57
   226
deba@57
   227
    /// \brief Clear the map.
deba@57
   228
    ///
deba@57
   229
    /// It erase all items from the map. It called by the observer notifier
deba@57
   230
    /// and it overrides the clear() member function of the observer base.     
deba@57
   231
    virtual void clear() { 
deba@57
   232
      container.clear();
deba@57
   233
    }
deba@57
   234
    
deba@57
   235
  private:
deba@57
   236
		
deba@57
   237
    Container container;
deba@57
   238
deba@57
   239
  };
deba@57
   240
deba@57
   241
}
deba@57
   242
deba@57
   243
#endif