COIN-OR::LEMON - Graph Library

source: lemon/lemon/bits/vector_map.h @ 209:765619b7cbb2

Last change on this file since 209:765619b7cbb2 was 209:765619b7cbb2, checked in by Alpar Juttner <alpar@…>, 16 years ago

Apply unify-sources.sh to the source tree

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