RosettaCodeData/Task/Set/00DESCRIPTION

32 lines
1.3 KiB
Text
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
{{data structure}}
2016-12-05 22:15:40 +01:00
A   '''set'''  is a collection of elements, without duplicates and without order.
2013-04-10 23:57:08 -07:00
2016-12-05 22:15:40 +01:00
;Task:
2013-04-10 23:57:08 -07:00
Show each of these set operations:
* Set creation
* Test m ∈ S -- "m is an element in set S"
* A ∪ B -- ''union''; a set of all elements either in set A or in set B.
* A ∩ B -- ''intersection''; a set of all elements in ''both'' set A and set B.
* A ∖ B -- ''difference''; a set of all elements in set A, except those in set B.
* A ⊆ B -- ''subset''; true if every element in set A is also in set B.
2016-12-05 22:15:40 +01:00
* A = B -- ''equality''; true if every element of set A is in set B and vice versa.
<br>
As an option, show some other set operations.
<br>(If A &sube; B, but A &ne; B, then A is called a true or proper subset of B, written A &sub; B or A &#x228a; B.)
2013-04-10 23:57:08 -07:00
2015-02-20 00:35:01 -05:00
As another option, show how to modify a mutable set.
2013-04-10 23:57:08 -07:00
2016-12-05 22:15:40 +01:00
2015-02-20 00:35:01 -05:00
One might implement a set using an [[associative array]] (with set elements as array keys and some dummy value as the values).
2016-12-05 22:15:40 +01:00
One might also implement a set with a binary search tree, or with a hash table, or with an ordered array of binary bits (operated on with bit-wise binary operators).
2015-02-20 00:35:01 -05:00
The basic test, m &isin; S, is [[O]](n) with a sequential list of elements, O(''log'' n) with a balanced binary search tree, or (O(1) average-case, O(n) worst case) with a hash table.
2013-10-27 22:24:23 +00:00
2016-12-05 22:15:40 +01:00
2013-10-27 22:24:23 +00:00
{{Template:See also lists}}
2016-12-05 22:15:40 +01:00
<br><br>