I'm having a hard time conceptualizing c++ sets, actually sets in general.
What are they? How are they useful?
|
2
|
I'm having a hard time conceptualizing c++ sets, actually sets in general. What are they? How are they useful?
|
||||||||||||||
|
|
|
Don't feel bad if you have trouble understanding sets in general. Most of a degree in mathematics is spent coming to terms with set theory: http://en.wikipedia.org/wiki/Set%5Ftheory Think of a set as a collection of unique, unordered objects. In many ways it looks like a list: { 1, 2, 3, 4 } but order is unimportant: { 4, 3, 2, 1} = { 1, 2, 3, 4} and repetitions are ignored: { 1, 1, 2, 3, 4 } = { 1, 2, 3, 4} A C++ set is an implementation of this mathematical object, with the odd feature that is is sorted internally. But this is just a detail of implementation, and is not relevant to understanding the data structure. The sorting is just for speed. |
||
|
|
|
|
For an unordered implementation of sets in C++, check out Boost.Unordered. In many cases this is a better choice than STL set, which I personally more or less use only to build a sorted list incrementally. |
||
|
|
|
|
A set is a collection. A set is like a dictionary or 'map' of key/value pairs, except that it only stores (is a collection of) keys without associated values. A set either does or doesn't contain an instance of each possible key value. For example, a set of integers might contain the values {0, 1, 5}. A value (e.g. 5) can't be contained more than once in the set (if you call the set's insert method more than once for a given key value, the set will still contain only one instance of that key value).
I don't use them nearly as often as maps. One time I use a set is if I'm a library which gives away pointers which a client uses as a handle. I'll keep a private set which contains all the valid handle values which I've created. When the client gives me a handle, I'll test whether the handle is a valid handle by testing whether that value is contained in my set. |
|||
|
|
|
STL Another way to look at it. Hence the properties, fast element search, element ordering, element uniqueness, ordered traversal and so on. It is useful when you want to keep track of unique elements like for example list of unique strings or integers but you can store more complicated structures as well. |
||
|
|
|
|
Sets "in general" are a (very fundamental) concept in mathematics. STL's Some STL implementations also support a |
||
|
|
|
|
|
||
|
|
|
|
"Set" is a kind of collection that store multiple but unique objects. It is useful when you want to collect objects but you don't care their order or how many times same object are in it. See this for more detail: Set in C++ |
||||||||
|
|
|
C++ STL Sets are associative mappings that guarantee both sorting and uniqueness of elements within the set (Multisets guarantee the former but not the latter). They are typically used as part of set operations - things like unions, intersections, and other interactions involving inclusion/exclusion of elements within a set. |
||
|
|