WPILibC++ 2024.3.2
SmallSet.h
Go to the documentation of this file.
1//===- llvm/ADT/SmallSet.h - 'Normally small' sets --------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file defines the SmallSet class.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef WPIUTIL_WPI_SMALLSET_H
15#define WPIUTIL_WPI_SMALLSET_H
16
17#include "wpi/SmallPtrSet.h"
18#include "wpi/SmallVector.h"
19#include "wpi/iterator.h"
20#include "wpi/Compiler.h"
21#include "wpi/type_traits.h"
22#include <cstddef>
23#include <functional>
24#include <optional>
25#include <set>
26#include <type_traits>
27#include <utility>
28
29namespace wpi {
30
31/// SmallSetIterator - This class implements a const_iterator for SmallSet by
32/// delegating to the underlying SmallVector or Set iterators.
33template <typename T, unsigned N, typename C>
35 : public iterator_facade_base<SmallSetIterator<T, N, C>,
36 std::forward_iterator_tag, T> {
37private:
38 using SetIterTy = typename std::set<T, C>::const_iterator;
39 using VecIterTy = typename SmallVector<T, N>::const_iterator;
41
42 /// Iterators to the parts of the SmallSet containing the data. They are set
43 /// depending on isSmall.
44 union {
45 SetIterTy SetIter;
46 VecIterTy VecIter;
47 };
48
49 bool isSmall;
50
51public:
52 SmallSetIterator(SetIterTy SetIter) : SetIter(SetIter), isSmall(false) {}
53
54 SmallSetIterator(VecIterTy VecIter) : VecIter(VecIter), isSmall(true) {}
55
56 // Spell out destructor, copy/move constructor and assignment operators for
57 // MSVC STL, where set<T>::const_iterator is not trivially copy constructible.
59 if (isSmall)
60 VecIter.~VecIterTy();
61 else
62 SetIter.~SetIterTy();
63 }
64
65 SmallSetIterator(const SmallSetIterator &Other) : isSmall(Other.isSmall) {
66 if (isSmall)
67 VecIter = Other.VecIter;
68 else
69 // Use placement new, to make sure SetIter is properly constructed, even
70 // if it is not trivially copy-able (e.g. in MSVC).
71 new (&SetIter) SetIterTy(Other.SetIter);
72 }
73
74 SmallSetIterator(SmallSetIterator &&Other) : isSmall(Other.isSmall) {
75 if (isSmall)
76 VecIter = std::move(Other.VecIter);
77 else
78 // Use placement new, to make sure SetIter is properly constructed, even
79 // if it is not trivially copy-able (e.g. in MSVC).
80 new (&SetIter) SetIterTy(std::move(Other.SetIter));
81 }
82
84 // Call destructor for SetIter, so it gets properly destroyed if it is
85 // not trivially destructible in case we are setting VecIter.
86 if (!isSmall)
87 SetIter.~SetIterTy();
88
89 isSmall = Other.isSmall;
90 if (isSmall)
91 VecIter = Other.VecIter;
92 else
93 new (&SetIter) SetIterTy(Other.SetIter);
94 return *this;
95 }
96
98 // Call destructor for SetIter, so it gets properly destroyed if it is
99 // not trivially destructible in case we are setting VecIter.
100 if (!isSmall)
101 SetIter.~SetIterTy();
102
103 isSmall = Other.isSmall;
104 if (isSmall)
105 VecIter = std::move(Other.VecIter);
106 else
107 new (&SetIter) SetIterTy(std::move(Other.SetIter));
108 return *this;
109 }
110
111 bool operator==(const SmallSetIterator &RHS) const {
112 if (isSmall != RHS.isSmall)
113 return false;
114 if (isSmall)
115 return VecIter == RHS.VecIter;
116 return SetIter == RHS.SetIter;
117 }
118
119 SmallSetIterator &operator++() { // Preincrement
120 if (isSmall)
121 VecIter++;
122 else
123 SetIter++;
124 return *this;
125 }
126
127 const T &operator*() const { return isSmall ? *VecIter : *SetIter; }
128};
129
130/// SmallSet - This maintains a set of unique values, optimizing for the case
131/// when the set is small (less than N). In this case, the set can be
132/// maintained with no mallocs. If the set gets large, we expand to using an
133/// std::set to maintain reasonable lookup times.
134template <typename T, unsigned N, typename C = std::less<T>>
135class SmallSet {
136 /// Use a SmallVector to hold the elements here (even though it will never
137 /// reach its 'large' stage) to avoid calling the default ctors of elements
138 /// we will never use.
139 SmallVector<T, N> Vector;
140 std::set<T, C> Set;
141
142 using VIterator = typename SmallVector<T, N>::const_iterator;
143 using SIterator = typename std::set<T, C>::const_iterator;
144 using mutable_iterator = typename SmallVector<T, N>::iterator;
145
146 // In small mode SmallPtrSet uses linear search for the elements, so it is
147 // not a good idea to choose this value too high. You may consider using a
148 // DenseSet<> instead if you expect many elements in the set.
149 static_assert(N <= 32, "N should be small");
150
151public:
152 using key_type = T;
153 using size_type = size_t;
154 using value_type = T;
156
157 SmallSet() = default;
158
159 [[nodiscard]] bool empty() const { return Vector.empty() && Set.empty(); }
160
161 size_type size() const {
162 return isSmall() ? Vector.size() : Set.size();
163 }
164
165 /// count - Return 1 if the element is in the set, 0 otherwise.
166 size_type count(const T &V) const {
167 if (isSmall()) {
168 // Since the collection is small, just do a linear search.
169 return vfind(V) == Vector.end() ? 0 : 1;
170 } else {
171 return Set.count(V);
172 }
173 }
174
175 /// insert - Insert an element into the set if it isn't already there.
176 /// Returns a pair. The first value of it is an iterator to the inserted
177 /// element or the existing element in the set. The second value is true
178 /// if the element is inserted (it was not in the set before).
179 std::pair<const_iterator, bool> insert(const T &V) {
180 if (!isSmall()) {
181 auto [I, Inserted] = Set.insert(V);
182 return std::make_pair(const_iterator(I), Inserted);
183 }
184
185 VIterator I = vfind(V);
186 if (I != Vector.end()) // Don't reinsert if it already exists.
187 return std::make_pair(const_iterator(I), false);
188 if (Vector.size() < N) {
189 Vector.push_back(V);
190 return std::make_pair(const_iterator(std::prev(Vector.end())), true);
191 }
192
193 // Otherwise, grow from vector to set.
194 while (!Vector.empty()) {
195 Set.insert(Vector.back());
196 Vector.pop_back();
197 }
198 return std::make_pair(const_iterator(Set.insert(V).first), true);
199 }
200
201 template <typename IterT>
202 void insert(IterT I, IterT E) {
203 for (; I != E; ++I)
204 insert(*I);
205 }
206
207 bool erase(const T &V) {
208 if (!isSmall())
209 return Set.erase(V);
210 for (mutable_iterator I = Vector.begin(), E = Vector.end(); I != E; ++I)
211 if (*I == V) {
212 Vector.erase(I);
213 return true;
214 }
215 return false;
216 }
217
218 void clear() {
219 Vector.clear();
220 Set.clear();
221 }
222
224 if (isSmall())
225 return {Vector.begin()};
226 return {Set.begin()};
227 }
228
230 if (isSmall())
231 return {Vector.end()};
232 return {Set.end()};
233 }
234
235 /// Check if the SmallSet contains the given element.
236 bool contains(const T &V) const {
237 if (isSmall())
238 return vfind(V) != Vector.end();
239 return Set.find(V) != Set.end();
240 }
241
242private:
243 bool isSmall() const { return Set.empty(); }
244
245 VIterator vfind(const T &V) const {
246 for (VIterator I = Vector.begin(), E = Vector.end(); I != E; ++I)
247 if (*I == V)
248 return I;
249 return Vector.end();
250 }
251};
252
253/// If this set is of pointer values, transparently switch over to using
254/// SmallPtrSet for performance.
255template <typename PointeeType, unsigned N>
256class SmallSet<PointeeType*, N> : public SmallPtrSet<PointeeType*, N> {};
257
258/// Equality comparison for SmallSet.
259///
260/// Iterates over elements of LHS confirming that each element is also a member
261/// of RHS, and that RHS contains no additional values.
262/// Equivalent to N calls to RHS.count.
263/// For small-set mode amortized complexity is O(N^2)
264/// For large-set mode amortized complexity is linear, worst case is O(N^2) (if
265/// every hash collides).
266template <typename T, unsigned LN, unsigned RN, typename C>
268 if (LHS.size() != RHS.size())
269 return false;
270
271 // All elements in LHS must also be in RHS
272 return std::all_of(LHS.begin(), LHS.end(), [&RHS](const T &E) { return RHS.count(E); });
273}
274
275/// Inequality comparison for SmallSet.
276///
277/// Equivalent to !(LHS == RHS). See operator== for performance notes.
278template <typename T, unsigned LN, unsigned RN, typename C>
280 return !(LHS == RHS);
281}
282
283} // end namespace wpi
284
285#endif // WPIUTIL_WPI_SMALLSET_H
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
Definition: SmallSet.h:135
T value_type
Definition: SmallSet.h:154
T key_type
Definition: SmallSet.h:152
bool erase(const T &V)
Definition: SmallSet.h:207
const_iterator end() const
Definition: SmallSet.h:229
size_t size_type
Definition: SmallSet.h:153
void insert(IterT I, IterT E)
Definition: SmallSet.h:202
bool contains(const T &V) const
Check if the SmallSet contains the given element.
Definition: SmallSet.h:236
bool empty() const
Definition: SmallSet.h:159
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
Definition: SmallSet.h:166
SmallSet()=default
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
Definition: SmallSet.h:179
SmallSetIterator< T, N, C > const_iterator
Definition: SmallSet.h:155
void clear()
Definition: SmallSet.h:218
const_iterator begin() const
Definition: SmallSet.h:223
size_type size() const
Definition: SmallSet.h:161
SmallSetIterator - This class implements a const_iterator for SmallSet by delegating to the underlyin...
Definition: SmallSet.h:36
SmallSetIterator(const SmallSetIterator &Other)
Definition: SmallSet.h:65
SmallSetIterator(SetIterTy SetIter)
Definition: SmallSet.h:52
bool operator==(const SmallSetIterator &RHS) const
Definition: SmallSet.h:111
SetIterTy SetIter
Definition: SmallSet.h:45
SmallSetIterator(VecIterTy VecIter)
Definition: SmallSet.h:54
~SmallSetIterator()
Definition: SmallSet.h:58
const T & operator*() const
Definition: SmallSet.h:127
SmallSetIterator & operator++()
Definition: SmallSet.h:119
SmallSetIterator & operator=(const SmallSetIterator &Other)
Definition: SmallSet.h:83
VecIterTy VecIter
Definition: SmallSet.h:46
SmallSetIterator(SmallSetIterator &&Other)
Definition: SmallSet.h:74
SmallSetIterator & operator=(SmallSetIterator &&Other)
Definition: SmallSet.h:97
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1202
iterator erase(const_iterator CI)
Definition: SmallVector.h:743
void clear()
Definition: SmallVector.h:616
void pop_back()
Definition: SmallVector.h:430
void push_back(const T &Elt)
Definition: SmallVector.h:418
size_t size() const
Definition: SmallVector.h:98
iterator begin()
Definition: SmallVector.h:272
iterator end()
Definition: SmallVector.h:274
bool empty() const
Definition: SmallVector.h:101
reference back()
Definition: SmallVector.h:313
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
Definition: iterator.h:80
Definition: ntcore_cpp.h:26
constexpr bool operator==(const unexpected< E > &lhs, const unexpected< E > &rhs)
Definition: expected:176
constexpr bool operator!=(const unexpected< E > &lhs, const unexpected< E > &rhs)
Definition: expected:180