2 * src/lemon/maps.h - Part of LEMON, a generic C++ optimization library
4 * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
5 * (Egervary Combinatorial Optimization Research Group, EGRES).
7 * Permission to use, modify and distribute this software is granted
8 * provided that this copyright notice appears in all copies. For
9 * precise terms see the accompanying LICENSE file.
11 * This software is provided "AS IS" with no warranty of any kind,
12 * express or implied, and with no claim as to its suitability for any
21 ///\brief Miscellaneous property maps
23 ///\todo This file has the same name as the concept file in concept/,
24 /// and this is not easily detectable in docs...
30 /// Base class of maps.
32 /// Base class of maps.
33 /// It provides the necessary <tt>typedef</tt>s required by the map concept.
34 template<typename K, typename T>
44 /// Null map. (a.k.a. DoNothingMap)
46 /// If you have to provide a map only for its type definitions,
47 /// or if you have to provide a writable map, but
48 /// data written to it will sent to <tt>/dev/null</tt>...
49 template<typename K, typename T>
50 class NullMap : public MapBase<K,T>
54 /// Gives back a default constructed element.
55 T operator[](const K&) const { return T(); }
56 /// Absorbs the value.
57 void set(const K&, const T&) {}
63 /// This is a readable map which assigns a specified value to each key.
64 /// In other aspects it is equivalent to the \ref NullMap.
65 /// \todo set could be used to set the value.
66 template<typename K, typename T>
67 class ConstMap : public MapBase<K,T>
72 /// Default constructor
74 /// The value of the map will be uninitialized.
75 /// (More exactly it will be default constructed.)
79 /// \param _v The initial value of the map.
81 ConstMap(const T &_v) : v(_v) {}
83 T operator[](const K&) const { return v; }
84 void set(const K&, const T&) {}
88 typedef ConstMap<K,T1> other;
92 ConstMap(const ConstMap<K,T1> &, const T &_v) : v(_v) {}
96 template<typename T, T v>
99 template<typename K, typename V, V v>
100 class ConstMap<K, Const<V, v> > : public MapBase<K, V>
104 V operator[](const K&) const { return v; }
105 void set(const K&, const V&) { }
108 /// \c std::map wrapper
110 /// This is essentially a wrapper for \c std::map. With addition that
111 /// you can specify a default value different from \c Value() .
113 /// \todo Provide allocator parameter...
114 template <typename K, typename T, typename Compare = std::less<K> >
115 class StdMap : public std::map<K,T,Compare> {
116 typedef std::map<K,T,Compare> parent;
118 typedef typename parent::value_type PairType;
123 typedef T& Reference;
124 typedef const T& ConstReference;
128 /// Constructor with specified default value
129 StdMap(const T& _v) : v(_v) {}
131 /// \brief Constructs the map from an appropriate std::map.
133 /// \warning Inefficient: copies the content of \c m !
134 StdMap(const parent &m) : parent(m) {}
135 /// \brief Constructs the map from an appropriate std::map, and explicitly
136 /// specifies a default value.
138 /// \warning Inefficient: copies the content of \c m !
139 StdMap(const parent &m, const T& _v) : parent(m), v(_v) {}
141 template<typename T1, typename Comp1>
142 StdMap(const StdMap<Key,T1,Comp1> &m, const T &_v) {
146 Reference operator[](const Key &k) {
147 return insert(PairType(k,v)).first -> second;
149 ConstReference operator[](const Key &k) const {
150 typename parent::iterator i = lower_bound(k);
151 if (i == parent::end() || parent::key_comp()(k, (*i).first))
155 void set(const Key &k, const T &t) {
156 parent::operator[](k) = t;
159 /// Changes the default value of the map.
160 /// \return Returns the previous default value.
162 /// \warning The value of some keys (which has already been queried, but
163 /// the value has been unchanged from the default) may change!
164 T setDefault(const T &_v) { T old=v; v=_v; return old; }
166 template<typename T1>
168 typedef StdMap<Key,T1,Compare> other;
173 #endif // LEMON_MAPS_H