| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 | #ifndef __GBLIBCPP_SET__#define __GBLIBCPP_SET__#include <bits/rbtree>#include <functional>#include <memory>#include <cstddef>namespace std {template <typename Key,    typename Compare = std::less<Key>,    typename Allocator = std::allocator<Key>>class set {private:    using rbtree_type = impl::rbtree<Key, Compare, Allocator>;    using node_allocator = typename rbtree_type::node_allocator;private:    rbtree_type tree;public:    using key_type = Key;    using value_type = Key;    using size_type = std::size_t;    using allocator_type = Allocator;    using iterator = typename rbtree_type::iterator;    using const_iterator = typename rbtree_type::const_iterator;public:    __GBLIBCPP_CONSTEXPR    iterator end(void) noexcept { return tree.end(); }    __GBLIBCPP_CONSTEXPR    const_iterator end(void) const noexcept { return tree.cend(); }    __GBLIBCPP_CONSTEXPR    const_iterator cend(void) const noexcept { return tree.cend(); }    __GBLIBCPP_CONSTEXPR    iterator begin(void) noexcept { return tree.begin(); }    __GBLIBCPP_CONSTEXPR    const_iterator begin(void) const noexcept { return tree.cbegin(); }    __GBLIBCPP_CONSTEXPR    const_iterator cbegin(void) const noexcept { return tree.cbegin(); }    explicit __GBLIBCPP_CONSTEXPR    set(const Compare& comp,        const Allocator& alloc = Allocator())        : tree(comp, alloc) {}        explicit __GBLIBCPP_CONSTEXPR    set(const Allocator& alloc)        : set(Compare(), alloc) {}    __GBLIBCPP_CONSTEXPR    set() : set(Compare()) {}    template <typename InputIter>    __GBLIBCPP_CONSTEXPR    set(InputIter first, InputIter last,        const Compare& comp = Compare(),        const Allocator& alloc = Allocator())        : set(comp, alloc)    {        insert(first, last);    }    template <typename InputIter>    __GBLIBCPP_CONSTEXPR    set(InputIter first, InputIter last,        const Allocator& alloc = Allocator())        : set(first, last, Compare(), alloc) {}    __GBLIBCPP_CONSTEXPR    set(const set& other) : tree(other) {}    __GBLIBCPP_CONSTEXPR    set(const set& other, const Allocator& alloc)        : tree(other, alloc) { }    __GBLIBCPP_CONSTEXPR    set(set&& other) : tree(std::move(other.tree)) {}    __GBLIBCPP_CONSTEXPR    set(set&& other, const Allocator& alloc)        : tree(std::move(other.tree), alloc) {}        __GBLIBCPP_CONSTEXPR    ~set() { clear(); }        __GBLIBCPP_CONSTEXPR    set& operator=(const set& other) = default;    __GBLIBCPP_CONSTEXPR    set& operator=(set&& other) = default;    // TODO: std::initializer_list    // set(std::initializer_list<Key> init,    //     const Compare& comp = Compare(),    //     const Allocator& alloc = Allocator());    //    // set(std::initializer_list<Key> init,    //     const Allocator& alloc = Allocator())    //     : set(init, Compare(), alloc) {}    //    // set& operator=(std::initializer_list<Key> ilist);    __GBLIBCPP_CONSTEXPR    iterator find(const Key& key) { return tree.find(key); }    __GBLIBCPP_CONSTEXPR    const_iterator find(const Key& key) const { return tree.find(key); }    __GBLIBCPP_CONSTEXPR    std::pair<iterator, bool> insert(const value_type& value)    { return tree.insert(value); }    __GBLIBCPP_CONSTEXPR    std::pair<iterator, bool> insert(value_type&& value)    { return tree.insert(std::move(value)); }    template <typename InputIter>    __GBLIBCPP_CONSTEXPR    void insert(InputIter first, InputIter last)    {        for ( ; first != last; ++first)            insert(*first);    }    template <typename... Args>    __GBLIBCPP_CONSTEXPR    std::pair<iterator, bool> emplace(Args&&... args)    { return tree.emplace(std::forward<Args>(args)...); }    __GBLIBCPP_CONSTEXPR    iterator erase(iterator pos) noexcept { return tree.erase(pos); }    __GBLIBCPP_CONSTEXPR    iterator erase(const_iterator pos) noexcept { return tree.erase(pos); }    __GBLIBCPP_CONSTEXPR    iterator erase(const_iterator first, const_iterator last) noexcept    {        while (first != last)            first = erase(first);        return first;    }    __GBLIBCPP_CONSTEXPR    size_type erase(const Key& key)    {        auto iter = find(key);        if (!iter)            return 0;        erase(iter);        return 1;    }    __GBLIBCPP_CONSTEXPR    void clear() noexcept { tree.destroy(); }    __GBLIBCPP_CONSTEXPR    bool empty() const noexcept { return tree.empty(); }    __GBLIBCPP_CONSTEXPR    size_type size() const noexcept { return tree.size(); }    __GBLIBCPP_CONSTEXPR    void swap(set& other) { tree.swap(other.tree); }    __GBLIBCPP_CONSTEXPR    size_type count(const Key& key) const    { return find(key) ? 1 : 0; }    __GBLIBCPP_CONSTEXPR    bool contains(const Key& key) const { return count(key) != 0; }};template <typename Key, typename Compare, typename Allocator>void swap(std::set<Key, Compare, Allocator>& lhs,    std::set<Key, Compare, Allocator>& rhs){ lhs.swap(rhs); }} // namespace std#endif
 |