跳转表Skiplist学习记录

这里写自定义目录标题

9.1.3 接口定义

template <typename K, typename V> struct Dictionary {
    virtual int size() const = 0;
    virtual bool put(K, V) = 0;
    virtual V* get(K k) = 0;
    virtual bool remove(K k) = 0;
}

你可能感兴趣的:(skiplist,学习)