LinkedHashMap

linked_hash_map.h

#ifndef LINKED_HASH_MAP_H_
#define LINKED_HASH_MAP_H_
#include <unordered_map>
#include <list>
#include "basic_macro.h"
#include "logging.h"
// This holds a list of pair<Key, Value> items.  This list is what gets
// traversed, and it's iterators from this list that we return from
// begin/end/find.
//
// We also keep a map<Key, list::iterator> for find.  Since std::list is a
// doubly-linked list, the iterators should remain stable.
template <class Key, class Value, class Hash = std::hash<Key>>
class linked_hash_map
{
  private:
    typedef std::list<std::pair<Key, Value>> ListType;
    typedef std::unordered_map<Key, typename ListType::iterator, Hash> MapType;

  public:
    typedef typename ListType::iterator iterator;
    typedef typename ListType::reverse_iterator reverse_iterator;
    typedef typename ListType::const_iterator const_iterator;
    typedef typename ListType::const_reverse_iterator const_reverse_iterator;
    typedef typename MapType::key_type key_type;
    typedef typename ListType::value_type value_type;
    typedef typename ListType::size_type size_type;

    linked_hash_map() = default;
    explicit linked_hash_map(size_type bucket_count) : map_(bucket_count) {}

    linked_hash_map(linked_hash_map &&other) = default;
    linked_hash_map &operator=(linked_hash_map &&other) = default;

    // Returns an iterator to the first (insertion-ordered) element.  Like a map,
    // this can be dereferenced to a pair<Key, Value>.
    iterator begin()
    {
        return list_.begin();
    }
    const_iterator begin() const
    {
        return list_.begin();
    }

    // Returns an iterator beyond the last element.
    iterator end()
    {
        return list_.end();
    }
    const_iterator end() const
    {
        return list_.end();
    }

    // Returns an iterator to the last (insertion-ordered) element.  Like a map,
    // this can be dereferenced to a pair<Key, Value>.
    reverse_iterator rbegin()
    {
        return list_.rbegin();
    }
    const_reverse_iterator rbegin() const
    {
        return list_.rbegin();
    }

    // Returns an iterator beyond the first element.
    reverse_iterator rend()
    {
        return list_.rend();
    }
    const_reverse_iterator rend() const
    {
        return list_.rend();
    }

    // Front and back accessors common to many stl containers.

    // Returns the earliest-inserted element
    const value_type &front() const
    {
        return list_.front();
    }

    // Returns the earliest-inserted element.
    value_type &front()
    {
        return list_.front();
    }

    // Returns the most-recently-inserted element.
    const value_type &back() const
    {
        return list_.back();
    }

    // Returns the most-recently-inserted element.
    value_type &back()
    {
        return list_.back();
    }

    // Clears the map of all values.
    void clear()
    {
        map_.clear();
        list_.clear();
    }

    // Returns true iff the map is empty.
    bool empty() const
    {
        return list_.empty();
    }

    // Removes the first element from the list.
    void pop_front() { erase(begin()); }

    // Erases values with the provided key.  Returns the number of elements
    // erased.  In this implementation, this will be 0 or 1.
    size_type erase(const Key &key)
    {
        typename MapType::iterator found = map_.find(key);
        if (found == map_.end())
            return 0;

        list_.erase(found->second);
        map_.erase(found);

        return 1;
    }

    // Erases the item that 'position' points to. Returns an iterator that points
    // to the item that comes immediately after the deleted item in the list, or
    // end().
    // If the provided iterator is invalid or there is inconsistency between the
    // map and list, a CHECK() error will occur.
    iterator erase(iterator position)
    {
        typename MapType::iterator found = map_.find(position->first);
        if(found->second != position){
            DLOG(FATAL)<<"Inconsisent iterator for map and list, or the iterator is invalid.";
        }

        map_.erase(found);
        return list_.erase(position);
    }

    // Erases all the items in the range [first, last).  Returns an iterator that
    // points to the item that comes immediately after the last deleted item in
    // the list, or end().
    iterator erase(iterator first, iterator last)
    {
        while (first != last && first != end())
        {
            first = erase(first);
        }
        return first;
    }

    // Finds the element with the given key.  Returns an iterator to the
    // value found, or to end() if the value was not found.  Like a map, this
    // iterator points to a pair<Key, Value>.
    iterator find(const Key &key)
    {
        typename MapType::iterator found = map_.find(key);
        if (found == map_.end())
        {
            return end();
        }
        return found->second;
    }

    const_iterator find(const Key &key) const
    {
        typename MapType::const_iterator found = map_.find(key);
        if (found == map_.end())
        {
            return end();
        }
        return found->second;
    }

    // Returns the bounds of a range that includes all the elements in the
    // container with a key that compares equal to x.
    std::pair<iterator, iterator> equal_range(const key_type &key)
    {
        std::pair<typename MapType::iterator, typename MapType::iterator> eq_range =
            map_.equal_range(key);

        return std::make_pair(eq_range.first->second, eq_range.second->second);
    }

    std::pair<const_iterator, const_iterator> equal_range(
        const key_type &key) const
    {
        std::pair<typename MapType::const_iterator,
                  typename MapType::const_iterator>
            eq_range =
                map_.equal_range(key);
        const const_iterator &start_iter = eq_range.first != map_.end() ? eq_range.first->second : end();
        const const_iterator &end_iter = eq_range.second != map_.end() ? eq_range.second->second : end();

        return std::make_pair(start_iter, end_iter);
    }

    // Returns the value mapped to key, or an inserted iterator to that position
    // in the map.
    Value &operator[](const key_type &key)
    {
        return (*((this->insert(std::make_pair(key, Value()))).first)).second;
    }

    // Inserts an element into the map
    std::pair<iterator, bool> insert(const std::pair<Key, Value> &pair)
    {
        // First make sure the map doesn't have a key with this value.  If it does,
        // return a pair with an iterator to it, and false indicating that we
        // didn't insert anything.
        typename MapType::iterator found = map_.find(pair.first);
        if (found != map_.end())
            return std::make_pair(found->second, false);

        // Otherwise, insert into the list first.
        list_.push_back(pair);

        // Obtain an iterator to the newly added element.  We do -- instead of -
        // since list::iterator doesn't implement operator-().
        typename ListType::iterator last = list_.end();
        --last;

        map_.insert(std::make_pair(pair.first, last));

        return std::make_pair(last, true);
    }

    size_type size() const
    {
        return list_.size();
    }

    template <typename... Args>
    std::pair<iterator, bool> emplace(Args &&... args)
    {
        ListType node_donor;
        auto node_pos =
            node_donor.emplace(node_donor.end(), std::forward<Args>(args)...);
        const auto &k = node_pos->first;
        auto ins = map_.insert({k, node_pos});
        if (!ins.second)
            return {ins.first->second, false};
        list_.splice(list_.end(), node_donor, node_pos);
        return {ins.first->second, true};
    }

    void swap(linked_hash_map &other)
    {
        map_.swap(other.map_);
        list_.swap(other.list_);
    }

  private:
    // The map component, used for speedy lookups
    MapType map_;

    // The list component, used for maintaining insertion order
    ListType list_;

    // |map_| contains iterators to |list_|, therefore a default copy constructor
    // or copy assignment operator would result in an inconsistent state.
    DISALLOW_COPY_AND_ASSIGN(linked_hash_map);
};
#endif

[1] 图解LinkedHashMap原理

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,179评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,229评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,032评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,533评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,531评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,539评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,916评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,813评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,568评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,654评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,354评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,918评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,152评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,852评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,378评论 2 342

推荐阅读更多精彩内容