36 typedef COMP key_compare;
37 typedef COMP value_compare;
38 typedef ALLOC allocator_type;
39 typedef const T &reference;
40 typedef const T &const_reference;
43 typedef std::list<T, ALLOC> list_type;
44 typedef typename list_type::iterator list_iterator;
52 typedef typename list_type::const_iterator iterator;
53 typedef typename list_type::const_iterator const_iterator;
54 typedef std::reverse_iterator<iterator> reverse_iterator;
55 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
60 bool operator()(
const T *a,
const T *b)
const {
return comp(*a, *b); }
62 using map_alloc =
typename std::allocator_traits<ALLOC>::template rebind_alloc<
63 std::pair<const T *const, list_iterator>>;
64 using map_type = std::map<const T *, list_iterator, mapcmp, map_alloc>;
66 void init_data_map() {
68 for (
auto it = data.begin(); it != data.end(); it++) data_map.emplace(&*it, it);
70 iterator tr_iter(
typename map_type::iterator i) {
71 if (i == data_map.end())
return data.end();
74 const_iterator tr_iter(
typename map_type::const_iterator i)
const {
75 if (i == data_map.end())
return data.end();
80 typedef typename map_type::size_type size_type;
81 class sorted_iterator :
public std::iterator<std::bidirectional_iterator_tag, T> {
83 typename map_type::const_iterator iter;
88 const T &operator*()
const {
return *iter->first; }
89 const T *operator->()
const {
return iter->first; }
108 bool operator==(
const sorted_iterator i)
const {
return iter == i.iter; }
109 bool operator!=(
const sorted_iterator i)
const {
return iter != i.iter; }
114 ordered_set(std::initializer_list<T> init) : data(init) { init_data_map(); }
115 template <
typename InputIt>
116 ordered_set(InputIt first, InputIt last) : data(first, last) {
119 ordered_set(ordered_set &&a) =
default;
120 ordered_set &operator=(
const ordered_set &a) {
125 ordered_set &operator=(ordered_set &&a) =
default;
126 bool operator==(
const ordered_set &a)
const {
return data == a.data; }
127 bool operator!=(
const ordered_set &a)
const {
return data != a.data; }
128 bool operator<(
const ordered_set &a)
const {
133 auto it = a.data_map.begin();
134 for (
auto &el : data_map) {
135 if (it == a.data_map.end())
return false;
136 if (mapcmp()(el.first, it->first))
return true;
137 if (mapcmp()(it->first, el.first))
return false;
140 return it != a.data_map.end();
145 iterator begin() noexcept {
return data.begin(); }
146 const_iterator begin() const noexcept {
return data.begin(); }
147 iterator end() noexcept {
return data.end(); }
148 const_iterator end() const noexcept {
return data.end(); }
149 reverse_iterator rbegin() noexcept {
return data.rbegin(); }
150 const_reverse_iterator rbegin() const noexcept {
return data.rbegin(); }
151 reverse_iterator rend() noexcept {
return data.rend(); }
152 const_reverse_iterator rend() const noexcept {
return data.rend(); }
153 const_iterator cbegin() const noexcept {
return data.cbegin(); }
154 const_iterator cend() const noexcept {
return data.cend(); }
155 const_reverse_iterator crbegin() const noexcept {
return data.crbegin(); }
156 const_reverse_iterator crend() const noexcept {
return data.crend(); }
157 sorted_iterator sorted_begin() const noexcept {
return data_map.begin(); }
158 sorted_iterator sorted_end() const noexcept {
return data_map.end(); }
160 reference front() const noexcept {
return *data.begin(); }
161 reference back() const noexcept {
return *data.rbegin(); }
163 bool empty() const noexcept {
return data.empty(); }
164 size_type size() const noexcept {
return data_map.size(); }
165 size_type max_size() const noexcept {
return data_map.max_size(); }
171 iterator find(
const T &a) {
return tr_iter(data_map.find(&a)); }
172 const_iterator find(
const T &a)
const {
return tr_iter(data_map.find(&a)); }
173 size_type count(
const T &a)
const {
return data_map.count(&a); }
174 iterator upper_bound(
const T &a) {
return tr_iter(data_map.upper_bound(&a)); }
175 const_iterator upper_bound(
const T &a)
const {
return tr_iter(data_map.upper_bound(&a)); }
176 iterator lower_bound(
const T &a) {
return tr_iter(data_map.lower_bound(&a)); }
177 const_iterator lower_bound(
const T &a)
const {
return tr_iter(data_map.lower_bound(&a)); }
179 std::pair<iterator, bool> insert(
const T &v) {
180 iterator it = find(v);
181 if (it == data.end()) {
182 list_iterator it = data.insert(data.end(), v);
183 data_map.emplace(&*it, it);
184 return std::make_pair(it,
true);
186 return std::make_pair(it,
false);
188 std::pair<iterator, bool> insert(T &&v) {
189 iterator it = find(v);
190 if (it == data.end()) {
191 list_iterator it = data.insert(data.end(), std::move(v));
192 data_map.emplace(&*it, it);
193 return std::make_pair(it,
true);
195 return std::make_pair(it,
false);
197 void insert(ordered_set::const_iterator begin, ordered_set::const_iterator end) {
198 for (
auto it = begin; it != end; ++it) insert(*it);
200 iterator insert(const_iterator pos,
const T &v) {
201 iterator it = find(v);
202 if (it == data.end()) {
203 list_iterator it = data.insert(pos, v);
204 data_map.emplace(&*it, it);
209 iterator insert(const_iterator pos, T &&v) {
210 iterator it = find(v);
211 if (it == data.end()) {
212 list_iterator it = data.insert(pos, std::move(v));
213 data_map.emplace(&*it, it);
219 void push_back(
const T &v) {
220 iterator it = find(v);
221 if (it == data.end()) {
222 list_iterator it = data.insert(data.end(), v);
223 data_map.emplace(&*it, it);
225 data.splice(data.end(), data, it);
228 void push_back(T &&v) {
229 iterator it = find(v);
230 if (it == data.end()) {
231 list_iterator it = data.insert(data.end(), std::move(v));
232 data_map.emplace(&*it, it);
234 data.splice(data.end(), data, it);
238 template <
class... Args>
239 std::pair<iterator, bool> emplace(Args &&...args) {
240 auto it = data.emplace(data.end(), std::forward<Args>(args)...);
241 auto old = find(*it);
242 if (old == data.end()) {
243 data_map.emplace(&*it, it);
244 return std::make_pair(it,
true);
247 return std::make_pair(old,
false);
251 template <
class... Args>
252 std::pair<iterator, bool> emplace_back(Args &&...args) {
253 auto it = data.emplace(data.end(), std::forward<Args>(args)...);
254 auto old = find(*it);
255 if (old != data.end()) {
258 data_map.emplace(&*it, it);
259 return std::make_pair(it,
true);
262 iterator erase(const_iterator pos) {
263 auto it = data_map.find(&*pos);
264 assert(it != data_map.end());
267 auto list_it = it->second;
269 return data.erase(list_it);
271 size_type erase(
const T &v) {
273 if (it != data.end()) {