alpar@209: /* -*- mode: C++; indent-tabs-mode: nil; -*- deba@57: * alpar@209: * This file is a part of LEMON, a generic C++ optimization library. deba@57: * alpar@107: * Copyright (C) 2003-2008 deba@57: * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport deba@57: * (Egervary Research Group on Combinatorial Optimization, EGRES). deba@57: * deba@57: * Permission to use, modify and distribute this software is granted deba@57: * provided that this copyright notice appears in all copies. For deba@57: * precise terms see the accompanying LICENSE file. deba@57: * deba@57: * This software is provided "AS IS" with no warranty of any kind, deba@57: * express or implied, and with no claim as to its suitability for any deba@57: * purpose. deba@57: * deba@57: */ deba@57: deba@57: #ifndef LEMON_BITS_VECTOR_MAP_H deba@57: #define LEMON_BITS_VECTOR_MAP_H deba@57: deba@57: #include deba@57: #include deba@57: deba@220: #include deba@57: #include deba@57: deba@57: #include deba@57: #include deba@57: kpeter@318: //\ingroup graphbits kpeter@318: // kpeter@318: //\file kpeter@318: //\brief Vector based graph maps. deba@57: namespace lemon { deba@57: kpeter@318: // \ingroup graphbits kpeter@318: // kpeter@318: // \brief Graph map based on the std::vector storage. kpeter@318: // kpeter@318: // The VectorMap template class is graph map structure what kpeter@318: // automatically updates the map when a key is added to or erased from kpeter@318: // the map. This map type uses the std::vector to store the values. kpeter@318: // kpeter@318: // \tparam _Graph The graph this map is attached to. kpeter@318: // \tparam _Item The item type of the graph items. kpeter@318: // \tparam _Value The value type of the map. deba@57: template alpar@209: class VectorMap deba@57: : public ItemSetTraits<_Graph, _Item>::ItemNotifier::ObserverBase { deba@57: private: alpar@209: kpeter@318: // The container type of the map. alpar@209: typedef std::vector<_Value> Container; deba@57: deba@57: public: deba@57: kpeter@318: // The graph type of the map. deba@57: typedef _Graph Graph; kpeter@318: // The item type of the map. deba@57: typedef _Item Item; kpeter@318: // The reference map tag. deba@57: typedef True ReferenceMapTag; deba@57: kpeter@318: // The key type of the map. deba@57: typedef _Item Key; kpeter@318: // The value type of the map. deba@57: typedef _Value Value; deba@57: kpeter@318: // The notifier type. deba@57: typedef typename ItemSetTraits<_Graph, _Item>::ItemNotifier Notifier; deba@57: kpeter@318: // The map type. deba@57: typedef VectorMap Map; kpeter@318: // The base class of the map. deba@57: typedef typename Notifier::ObserverBase Parent; deba@57: kpeter@318: // The reference type of the map; deba@57: typedef typename Container::reference Reference; kpeter@318: // The const reference type of the map; deba@57: typedef typename Container::const_reference ConstReference; deba@57: deba@57: kpeter@318: // \brief Constructor to attach the new map into the notifier. kpeter@318: // kpeter@318: // It constructs a map and attachs it into the notifier. kpeter@318: // It adds all the items of the graph to the map. deba@57: VectorMap(const Graph& graph) { deba@57: Parent::attach(graph.notifier(Item())); deba@57: container.resize(Parent::notifier()->maxId() + 1); deba@57: } deba@57: kpeter@318: // \brief Constructor uses given value to initialize the map. kpeter@318: // kpeter@318: // It constructs a map uses a given value to initialize the map. kpeter@318: // It adds all the items of the graph to the map. deba@57: VectorMap(const Graph& graph, const Value& value) { deba@57: Parent::attach(graph.notifier(Item())); deba@57: container.resize(Parent::notifier()->maxId() + 1, value); deba@57: } deba@57: kpeter@263: private: kpeter@318: // \brief Copy constructor kpeter@318: // kpeter@318: // Copy constructor. deba@57: VectorMap(const VectorMap& _copy) : Parent() { deba@57: if (_copy.attached()) { alpar@209: Parent::attach(*_copy.notifier()); alpar@209: container = _copy.container; deba@57: } deba@57: } deba@57: kpeter@318: // \brief Assign operator. kpeter@318: // kpeter@318: // This operator assigns for each item in the map the kpeter@318: // value mapped to the same item in the copied map. kpeter@318: // The parameter map should be indiced with the same kpeter@318: // itemset because this assign operator does not change kpeter@318: // the container of the map. deba@57: VectorMap& operator=(const VectorMap& cmap) { deba@57: return operator=(cmap); deba@57: } deba@57: deba@57: kpeter@318: // \brief Template assign operator. kpeter@318: // kpeter@318: // The given parameter should be conform to the ReadMap kpeter@318: // concecpt and could be indiced by the current item set of kpeter@318: // the NodeMap. In this case the value for each item kpeter@318: // is assigned by the value of the given ReadMap. deba@57: template deba@57: VectorMap& operator=(const CMap& cmap) { deba@57: checkConcept, CMap>(); deba@57: const typename Parent::Notifier* nf = Parent::notifier(); deba@57: Item it; deba@57: for (nf->first(it); it != INVALID; nf->next(it)) { deba@57: set(it, cmap[it]); deba@57: } deba@57: return *this; deba@57: } alpar@209: deba@57: public: deba@57: kpeter@318: // \brief The subcript operator. kpeter@318: // kpeter@318: // The subscript operator. The map can be subscripted by the kpeter@318: // actual items of the graph. deba@57: Reference operator[](const Key& key) { deba@57: return container[Parent::notifier()->id(key)]; alpar@209: } alpar@209: kpeter@318: // \brief The const subcript operator. kpeter@318: // kpeter@318: // The const subscript operator. The map can be subscripted by the kpeter@318: // actual items of the graph. deba@57: ConstReference operator[](const Key& key) const { deba@57: return container[Parent::notifier()->id(key)]; deba@57: } deba@57: deba@57: kpeter@318: // \brief The setter function of the map. kpeter@318: // kpeter@318: // It the same as operator[](key) = value expression. deba@57: void set(const Key& key, const Value& value) { deba@57: (*this)[key] = value; deba@57: } deba@57: deba@57: protected: deba@57: kpeter@318: // \brief Adds a new key to the map. kpeter@318: // kpeter@318: // It adds a new key to the map. It called by the observer notifier kpeter@318: // and it overrides the add() member function of the observer base. deba@57: virtual void add(const Key& key) { deba@57: int id = Parent::notifier()->id(key); deba@57: if (id >= int(container.size())) { alpar@209: container.resize(id + 1); deba@57: } deba@57: } deba@57: kpeter@318: // \brief Adds more new keys to the map. kpeter@318: // kpeter@318: // It adds more new keys to the map. It called by the observer notifier kpeter@318: // and it overrides the add() member function of the observer base. deba@57: virtual void add(const std::vector& keys) { deba@57: int max = container.size() - 1; deba@57: for (int i = 0; i < int(keys.size()); ++i) { deba@57: int id = Parent::notifier()->id(keys[i]); deba@57: if (id >= max) { deba@57: max = id; deba@57: } deba@57: } deba@57: container.resize(max + 1); deba@57: } deba@57: kpeter@318: // \brief Erase a key from the map. kpeter@318: // kpeter@318: // Erase a key from the map. It called by the observer notifier kpeter@318: // and it overrides the erase() member function of the observer base. deba@57: virtual void erase(const Key& key) { deba@57: container[Parent::notifier()->id(key)] = Value(); deba@57: } deba@57: kpeter@318: // \brief Erase more keys from the map. kpeter@318: // kpeter@318: // Erase more keys from the map. It called by the observer notifier kpeter@318: // and it overrides the erase() member function of the observer base. deba@57: virtual void erase(const std::vector& keys) { deba@57: for (int i = 0; i < int(keys.size()); ++i) { alpar@209: container[Parent::notifier()->id(keys[i])] = Value(); deba@57: } deba@57: } alpar@209: kpeter@318: // \brief Buildes the map. kpeter@318: // kpeter@318: // It buildes the map. It called by the observer notifier kpeter@318: // and it overrides the build() member function of the observer base. alpar@209: virtual void build() { deba@57: int size = Parent::notifier()->maxId() + 1; deba@57: container.reserve(size); deba@57: container.resize(size); deba@57: } deba@57: kpeter@318: // \brief Clear the map. kpeter@318: // kpeter@318: // It erase all items from the map. It called by the observer notifier kpeter@318: // and it overrides the clear() member function of the observer base. alpar@209: virtual void clear() { deba@57: container.clear(); deba@57: } alpar@209: deba@57: private: alpar@209: deba@57: Container container; deba@57: deba@57: }; deba@57: deba@57: } deba@57: deba@57: #endif