Tagged Questions

A set is a collection with no particular order, in which no element is repeated.

learn more… | top users | synonyms

31
votes
6answers
970 views

Why is '+' not understood by Python sets?

I would like to know why this is valid: set(range(10)) - set(range(5)) but this is not valid: set(range(10)) + set(range(5)) Is it because '+' could mean both intersection and union?
23
votes
12answers
16k views

Efficient set intersection algorithm

Given two lists (not necessarily sorted), what is the most efficient non-recursive algorithm to find the intersection of those lists?
23
votes
20answers
29k views

Picking a random element from a set

How do I pick a random element from a set? I'm particularly interested in picking a random element from a HashSet or a LinkedHashSet, in Java. Solutions for other languages are also welcome.
22
votes
2answers
375 views

Is this problem NP, and does it have a name?

This problem came up in the real world, but I've translated it into a more generic "textbook-like" formulation. I suspect it is NP, but I'm particularly interested in knowing if it has a name or is ...
19
votes
5answers
6k views

How to check that an element is in a std::set?

How do you check that an element is in a set? Is there a simpler equivalent of the following code: myset.find(x) != myset.end()
18
votes
7answers
769 views

What is wrong with `std::set`?

In the other topic I was trying to solve this problem. The problem was to remove duplicate characters from a std::string. std::string s= "saaangeetha"; Since the order was not important, so I ...
15
votes
7answers
19k views

c# - How to iterate through classes fields and set properties

I am not sure if this is possible but I want to iterate through a class and set a field member property without referring to the field object explicitly: public class Employee { public Person ...
15
votes
6answers
9k views

c++ STL set difference

Does the C++ STL set data structure have a set difference operator?
14
votes
7answers
5k views

how can I get a std::set of keys to a std::map

I was writing an algorithm this morning and I ran into a curious situation. I have two std::maps. I want to perform a set intersection on the sets of the keys of each (to find which keys are common ...
13
votes
8answers
520 views

Which method is better for implementing get/set?

There are two methos for implementing get/set. Method 1: Define get and set separately. class my_class { // ... }; class main_class { public: my_class get_data() const { return m_data; ...
13
votes
7answers
7k views

Java - easily convert array to set

I'd like to convert an array to a set in Java. There are some obvious ways of doing this (i.e. with a loop) but I would like something a bit neater, something like: java.util.Arrays.asList(Object[] ...
13
votes
4answers
2k views

how best do I find the intersection of multiple sets in python?

I have a list of sets: setlist = [s1,s2,s3...] I want s1 ∩ s2 ∩ s3 ... I can write a function to do it by performing a series of pairwise s1.intersection(s2), etc., but is there a recommended, ...
12
votes
4answers
244 views

Fast Data structure for finding strict subsets (from a given list)

I have a large set of sets e.g. {{2,4,5} , {4,5}, ...}. Given one of these subsets, I would like to iterate through all other subsets which are strict subsets of this subset. That is, if I am ...
12
votes
4answers
367 views

Java: Set interface and Collection interface differences

I just looked up the Set interface and found that it mostly (or completely) only redeclares functions which are already in the Collection interface. Set itself extends Collection, so doesn't that mean ...
12
votes
4answers
465 views

How is CPython's set() implemented?

I've seen people say that set objects in python have O(1) membership-checking. How are they implemented internally to allow this? What sort of data structure does it use? What other implications does ...
11
votes
7answers
449 views

Select random element from a set, faster than linear time (Haskell)

I'd like to create this function, which selects a random element from a Set: randElem :: (RandomGen g) => Set a -> g -> (a, g) Simple listy implementations can be written. For example ...
11
votes
4answers
712 views

Quickest algorithm for finding sets with high intersection

I have a large number of user IDs (integers), potentially millions. These users all belong to various groups (sets of integers), such that there are on the order of 10 million groups. To simplify my ...
10
votes
5answers
192 views

Erase final member of std::set

How can I delete the last member from a set? For example: set<int> setInt; setInt.insert(1); setInt.insert(4); setInt.insert(3); setInt.insert(2); How can I delete 4 from setInt? I tried ...
10
votes
4answers
149 views

How to select a random element in std::set in less than O(n) time?

This question with an added constraint. I'm willing to allow not-uniform selection as long as it's not to lop sided. Given that "sets are typically implemented as binary search trees" and I expect ...
10
votes
4answers
270 views

C++0x issue: Constant time insertion into std::set

According to this page, I can achieve constant time insertion if I use iterator std::set::insert ( iterator position, const value_type& x ); and the position iterator I provide directly ...
10
votes
4answers
361 views

Efficient set intersection - decide whether the intersection is larger than k

I am faced with a problem where I have to calculate intersections between all pairs in a collection of sets. None of the sets are smaller than a small constant k, and I'm only interested in whether ...
10
votes
4answers
4k views

C++, copy set to vector

I need to copy std::set to std::vector std::set <double> input; input.insert(5); input.insert(6); std::vector <double> output; std::copy(input.begin(), input.end(), output.begin()); ...
10
votes
12answers
382 views

Correct use of C# properties

private List<Date> _dates; public List<Date> Dates { get { return _dates; } set { _dates = value; } } OR public List<Date> Dates { get; set; } I ...
10
votes
2answers
431 views

Algorithm/approximation for combined independent set/hamming distance problem

Input: Graph G Output: several independent sets, so that the membership of a node to all independent sets is unique. A node therefore has no connections to any node in its own set. Here is an example ...
10
votes
8answers
501 views

Is there a better, pythonic way to do this?

This is my first python program - Requirement: Read a file consisting of {adId UserId} in each line. For each adId, print the number of unique userIds. Here is my code, put together from reading ...
9
votes
2answers
229 views

Scala: Contains in mutable and immutable sets

I've discovered a strange behavior for mutable sets which I cannot understand: I have a object which I want to add to a set. The equals method for the class is overridden. When I add two different ...
9
votes
3answers
116 views

In Java, what precautions should be taken when using a Set as a key in a Map?

I'm not sure what are prevailing opinions about using dynamic objects such as Sets as keys in Maps. I know that typical Map implementations (for example, HashMap) use a hashcode to decide what bucket ...
9
votes
5answers
243 views

Iteration order of sets in Python

If I have two identical sets, meaning a == b gives me True, will they have the same iteration order? I tried it, and it works: >>> foo = set("abc") >>> bar = set("abc") >>> ...
9
votes
4answers
332 views

Can Python's set absence of ordering be considered random order?

I'd like to know if the absence of element ordering of the Python's built-in set structure is "random enough". For instance, taking the iterator of a set, can it be considered a shuffled view of its ...
9
votes
2answers
2k views

Python: How do sets work

I have a list of objects which I want to turn into a set. My objects contain a few fields that some of which are o.id and o.area. I want two objects to be equal if these two fields are the same. ie: ...
9
votes
3answers
6k views

How to check if a table contains an element in Lua?

Is there a method for checking if a table contains a value ? I have my own (naive) function, but I was wondering if something "official" exists for that ? Or something more efficient... function ...
9
votes
2answers
889 views

Convert Scala Set into Java (java.util.Set)?

I have a Set in Scala (I can choose any implementation as I am creating the Set. The Java library I am using is expecting a java.util.Set[String]. Is the following the correct way to do this in Scala ...
9
votes
5answers
1k views

C++ STL set update is tedious

I find the update operation on set tedious since there's no such an API on cplusplus. So what I currently do is sth like this: //find element in set by iterator Element copy = *iterator; ... // ...
8
votes
4answers
131 views

How can Python dict have multiple keys with same hash?

I am trying to understand python hash function under the hood. I created a custom class where all instances return the same hash value. class C(object): def __hash__(self): return 42 I ...
8
votes
2answers
242 views

Generics Hell: Can I construct a TypeLiteral<Set<T>> using generics?

The only way I was able to get the below generic method to work was to pass the seemingly redundant TypeLiteral<Set<T>> parameter. I believe it should be possible to construct this ...
8
votes
1answer
66 views

In python - the operator which a set uses for test if an object is in the set

If I have a list of objects, I can use the __cmp__ method to override objects are compared. This affects how the == operator works, and the item in list fuction. However, it doesn't seem to affect the ...
8
votes
1answer
124 views

Scala: lightweight way to put Arrays in a Set or Map

Since == does not work with Arrays, I cannot effectively create a Set of Arrays (or Map with Array keys). I would rather not take the performance hit of converting my Arrays to a Vector or List or ...
8
votes
1answer
195 views

Calculate if two infinite regex solution sets don't intersect

In calculate if two arbitrary regular expressions have any overlapping solutions (assuming it's possible). For example these two regular expressions can be shown to have no intersections by brute ...
8
votes
2answers
133 views

How can I define a custom equality operation that will be used by immutable Set comparison methods

I have an immutable Set of a class, Set[MyClass], and I want to use the Set methods intersect and diff, but I want them to test for equality using my custom equals method, rather than default object ...
8
votes
3answers
74 views

Unexpected behavior for python set.__contains__

Borrowing the documentation from the __contains__ documentation print set.__contains__.__doc__ x.__contains__(y) <==> y in x. This seems to work fine for primitive objects such as int, ...
8
votes
6answers
478 views

Java - Get/set methods receiving and returning “null”

I'm a beginner in Java. I'm trying, for training purpose, to build myself a chess game application. Within my class Case, that will be used to instanciate all the 64 cases of my board, I write ...
8
votes
2answers
378 views

Why does std::set.insert() return a non-const iterator, and yet I cannot modify it?

Consider this code example: #include <set> #include <string> using namespace std; set<string> string_set; void foo(const string& a) { pair<set<string>::iterator, ...
8
votes
3answers
227 views

Data structure for querying whether a given subset exists in a collection of sets

I'm trying to build a data structure for a word game solver. I need to store about 150,000 sets of the form {A, A, D, E, I, L, P, T, V, Y}. (They are normalized English words, i.e. characters sorted. ...
8
votes
3answers
1k views

How can I represent sets in Perl?

I would like to represent a set in Perl. What I usually do is using a hash with some dummy value, e.g.: my %hash=(); $hash{"element1"}=1; $hash{"element5"}=1; Then use if (defined ...
8
votes
5answers
1k views

Concurrent Set Queue

Maybe this is a silly question, but I cannot seem to find an obvious answer. I need a concurrent FIFO queue that contains only unique values. Attempting to add a value that already exists in the ...
8
votes
4answers
443 views

Python: See if one set contains another entirely?

Is there a fast way to check if one set entirely contains another? Something like: >>>[1, 2, 3].containsAll([2, 1]) True >>>[1, 2, 3].containsAll([3, 5, 9]) False
8
votes
2answers
319 views

append set to another set

Is there a better way of appending a set to another set than iterating through each element ? i have : set<string> foo ; set<string> bar ; ..... for (set<string>::const_iterator ...
8
votes
2answers
360 views

Why doesn't the F# Set implement ISet<T>?

The .NET Framework is adding an ISet<T> interface with the 4.0 release. In the same release, F# is being added as a first-class language. F# provides an immutable Set<'T> class. It would ...
8
votes
1answer
10k views

JSTL Sets and Lists - checking if item exists in a Set

I have a Java Set in my session and a variable also in the session. I need to be able to tell if that variable exists in the set. I want to use the contains ( Object ) method that Java has for ...
8
votes
6answers
6k views

When to use Enum or Collection in Java

Under what circumstances is an enum more appropriate than, for example, a Collection that guarantees unique elements (an implementer of java.util.Set, I guess...)? (This is kind of a follow up from ...

1 2 3 4 5 23