/******************************************************************************* * This file is part of the "https://github.com/blackmatov/flat.hpp" * For conditions of distribution and use, see copyright notice in LICENSE.md * Copyright (C) 2019, by Matvey Cherevko (blackmatov@gmail.com) ******************************************************************************/ #pragma once #include #include #include #include #include #include #include #include namespace flat_hpp { template < typename Key , typename Value , typename Compare = std::less , typename Allocator = std::allocator> , typename Container = std::vector, Allocator> > class flat_map final { class uber_comparer_type : public Compare { public: uber_comparer_type() = default; uber_comparer_type(const Compare& c) : Compare(c) {} bool operator()(const Key& l, const Key& r) const { return Compare::operator()(l, r); } bool operator()(const Key& l, typename Container::const_reference r) const { return Compare::operator()(l, r.first); } bool operator()(typename Container::const_reference l, const Key& r) const { return Compare::operator()(l.first, r); } }; public: using key_type = Key; using mapped_type = Value; using value_type = typename Container::value_type; using size_type = typename Container::size_type; using difference_type = typename Container::difference_type; using key_compare = Compare; using allocator_type = Allocator; using container_type = Container; using reference = typename Container::reference; using const_reference = typename Container::const_reference; using pointer = typename Container::pointer; using const_pointer = typename Container::const_pointer; using iterator = typename Container::iterator; using const_iterator = typename Container::const_iterator; using reverse_iterator = typename Container::reverse_iterator; using const_reverse_iterator = typename Container::const_reverse_iterator; class value_compare { public: bool operator()(const value_type& l, const value_type& r) const { return compare_(l.first, r.first); } private: friend class flat_map; explicit value_compare(const key_compare& compare) : compare_(compare) {} private: key_compare compare_; }; static_assert( std::is_same::value, "Allocator::value_type must be same type as value_type"); static_assert( std::is_same::value, "Container::value_type must be same type as value_type"); static_assert( std::is_same::value, "Container::allocator_type must be same type as allocator_type"); public: explicit flat_map( const Allocator& a) : data_(a) {} explicit flat_map( const Compare& c = Compare(), const Allocator& a = Allocator()) : data_(a) , compare_(c) {} template < typename InputIter > flat_map( InputIter first, InputIter last, const Allocator& a) : data_(a) { insert(first, last); } template < typename InputIter > flat_map( InputIter first, InputIter last, const Compare& c = Compare(), const Allocator& a = Allocator()) : data_(a) , compare_(c) { insert(first, last); } flat_map( std::initializer_list ilist, const Allocator& a) : data_(a) { insert(ilist); } flat_map( std::initializer_list ilist, const Compare& c = Compare(), const Allocator& a = Allocator()) : data_(a) , compare_(c) { insert(ilist); } flat_map(flat_map&& other) = default; flat_map(const flat_map& other) = default; flat_map& operator=(flat_map&& other) = default; flat_map& operator=(const flat_map& other) = default; flat_map& operator=(std::initializer_list ilist) { flat_map(ilist).swap(*this); return *this; } allocator_type get_allocator() const { return data_.get_allocator(); } iterator begin() noexcept { return data_.begin(); } const_iterator begin() const noexcept { return data_.begin(); } const_iterator cbegin() const noexcept { return data_.cbegin(); } iterator end() noexcept { return data_.end(); } const_iterator end() const noexcept { return data_.end(); } const_iterator cend() const noexcept { return data_.cend(); } reverse_iterator rbegin() noexcept { return data_.rbegin(); } const_reverse_iterator rbegin() const noexcept { return data_.rbegin(); } const_reverse_iterator crbegin() const noexcept { return data_.crbegin(); } reverse_iterator rend() noexcept { return data_.rend(); } const_reverse_iterator rend() const noexcept { return data_.rend(); } const_reverse_iterator crend() const noexcept { return data_.crend(); } bool empty() const noexcept { return data_.empty(); } size_type size() const noexcept { return data_.size(); } size_type max_size() const noexcept { return data_.max_size(); } size_type capacity() const noexcept { return data_.capacity(); } void reserve(size_type ncapacity) { data_.reserve(ncapacity); } void shrink_to_fit() { data_.shrink_to_fit(); } mapped_type& operator[](key_type&& key) { const iterator iter = find(key); return iter != end() ? iter->second : emplace(std::move(key), mapped_type()).first->second; } mapped_type& operator[](const key_type& key) { const iterator iter = find(key); return iter != end() ? iter->second : emplace(key, mapped_type()).first->second; } mapped_type& at(const key_type& key) { const iterator iter = find(key); if ( iter != end() ) { return iter->second; } throw std::out_of_range("flat_map::at: key not found"); } const mapped_type& at(const key_type& key) const { const const_iterator iter = find(key); if ( iter != end() ) { return iter->second; } throw std::out_of_range("flat_map::at: key not found"); } std::pair insert(value_type&& value) { const iterator iter = lower_bound(value.first); return iter == end() || compare_(value.first, iter->first) ? std::make_pair(data_.insert(iter, std::move(value)), true) : std::make_pair(iter, false); } std::pair insert(const value_type& value) { const iterator iter = lower_bound(value.first); return iter == end() || compare_(value.first, iter->first) ? std::make_pair(data_.insert(iter, value), true) : std::make_pair(iter, false); } iterator insert(const_iterator hint, value_type&& value) { return (hint == begin() || compare_((hint - 1)->first, value.first)) && (hint == end() || compare_(value.first, hint->first)) ? data_.insert(hint, std::move(value)) : insert(std::move(value)).first; } iterator insert(const_iterator hint, const value_type& value) { return (hint == begin() || compare_((hint - 1)->first, value.first)) && (hint == end() || compare_(value.first, hint->first)) ? data_.insert(hint, value) : insert(value).first; } template < typename InputIter > void insert(InputIter first, InputIter last) { while ( first != last ) { insert(*first++); } } void insert(std::initializer_list ilist) { insert(ilist.begin(), ilist.end()); } template < typename... Args > std::pair emplace(Args&&... args) { return insert(value_type(std::forward(args)...)); } template < typename... Args > iterator emplace_hint(const_iterator hint, Args&&... args) { return insert(hint, value_type(std::forward(args)...)); } void clear() noexcept { data_.clear(); } iterator erase(const_iterator iter) { return data_.erase(iter); } iterator erase(const_iterator first, const_iterator last) { return data_.erase(first, last); } size_type erase(const key_type& key) { const iterator iter = find(key); return iter != end() ? (erase(iter), 1) : 0; } void swap(flat_map& other) { using std::swap; swap(data_, other.data_); swap(compare_, other.compare_); } size_type count(const key_type& key) const { const auto iter = find(key); return iter != end() ? 1 : 0; } iterator find(const key_type& key) { const iterator iter = lower_bound(key); return iter != end() && !compare_(key, iter->first) ? iter : end(); } const_iterator find(const key_type& key) const { const const_iterator iter = lower_bound(key); return iter != end() && !compare_(key, iter->first) ? iter : end(); } std::pair equal_range(const key_type& key) { return std::equal_range(begin(), end(), key, compare_); } std::pair equal_range(const key_type& key) const { return std::equal_range(begin(), end(), key, compare_); } iterator lower_bound(const key_type& key) { return std::lower_bound(begin(), end(), key, compare_); } const_iterator lower_bound(const key_type& key) const { return std::lower_bound(begin(), end(), key, compare_); } iterator upper_bound(const key_type& key) { return std::upper_bound(begin(), end(), key, compare_); } const_iterator upper_bound(const key_type& key) const { return std::upper_bound(begin(), end(), key, compare_); } key_compare key_comp() const { return compare_; } value_compare value_comp() const { return value_compare(compare_); } private: container_type data_; uber_comparer_type compare_; }; } namespace flat_hpp { template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > void swap( flat_map& l, flat_map& r) { l.swap(r); } template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > bool operator==( const flat_map& l, const flat_map& r) { return l.size() == r.size() && std::equal(l.begin(), l.end(), r.begin()); } template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > bool operator!=( const flat_map& l, const flat_map& r) { return !(l == r); } template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > bool operator<( const flat_map& l, const flat_map& r) { return std::lexicographical_compare(l.begin(), l.end(), r.begin(), r.end()); } template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > bool operator>( const flat_map& l, const flat_map& r) { return r < l; } template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > bool operator<=( const flat_map& l, const flat_map& r) { return !(r < l); } template < typename Key , typename Value , typename Compare , typename Allocator , typename Container > bool operator>=( const flat_map& l, const flat_map& r) { return !(l < r); } }