1
vote
2answers
90 views
In-place C++ set intersection
The standard way of intersecting two sets in C++ is to do the following:
std::set<int> set_1; // With some elements
std::set<int> set_2; // With some other elements
…
1
vote
2answers
134 views
Python: Fast extraction of intersections among all possible 2-combinations in a large number of lists
I have a dataset of ca. 9K lists of variable length (1 to 100K elements). I need to calculate the length of the intersection of all possible 2-list combinations in this dataset. No …
4
votes
4answers
98 views
Collection of sets containing no sets which are a subset of another in the collection
I am looking for an abstract data structure which represents a collection of sets such that no set in the collection is a subset of another set in the collection.
This means that …
0
votes
1answer
62 views
Ruby: Make hash from Hash => Set
I have a join table that I'm using to find available services for an order form; in that table is the utility_id and a company_id.
What I want is a group (hash) where the keys are …
2
votes
1answer
36 views
Does Microsoft Access 2003 contain sets or multisets?
I'm trying to confirm or deny whether you can define a table column in MS Access 2003 as a set. It seems this is implemented in Office 2007 - you can define a column to have a 'mu …
1
vote
5answers
82 views
Is there code out there to subclass set in Python for big xranges?
I'm trying to write some Python code that includes union/intersection of sets that potentially can be very large. Much of the time, these sets will be essentially set(xrange(1<& …
5
votes
9answers
270 views
Removing items from a collection in java while iterating over it
I want to be able to remove multiple elements from a set while I am iterating over it. Initially I hoped that iterators were smart enough for the naive solution below to work.
Set …
3
votes
8answers
156 views
Functional Data Structures in Java
Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?
2
votes
4answers
144 views
Obtaining powerset of a set in java
The powerset of {1, 2, 3} is:
{{}, {2}, {3}, {2, 3}, {1, 2}, {1, 3}, {1, 2, 3}, {1}}
Lets say I have a Set in Java...
Set<Integer> mySet = new HashSet<Integer>();
my …
1
vote
5answers
100 views
LINQ : Determine if two sequences contains exactly the same elements
I need to determine whether or not two sets contains exactly the same elements. The ordering does not matter.
For instance, these two arrays should be considered equal:
IEnumerab …
3
votes
2answers
266 views
Does Python have an ordered set?
Python has an ordered dictionary, what about an ordered set?
This question previously had a warning that there was going to be a self-answer.
0
votes
1answer
42 views
Is there a way to inspect the (differing) internal structures of Python objects that test as equal (==)?
Yesterday I asked ("A case of outwardly equal lists of sets behaving differently under Python 2.5 (I think …)") why list W constructed as follows:
r_dim_1_based = range( 1, dim + …
0
votes
1answer
43 views
A case of outwardly equal lists of sets behaving differently under Python 2.5 (I think …)
Four years ago I wrote a Sudoku puzzle solver, and now I'm trying to understand how it works so that I can reuse parts of it for a KenKen puzzle solver. I thought I'd better compa …
3
votes
6answers
260 views
How can I code this problem? (C++)
I am writing a simple game which stores datasets in a 2D grid (like a chess board). Each cell in the grid may contain a single integer (0 means the cell is empty). If the cell cont …
1
vote
2answers
116 views
Overriding set methods in Python
I want to create a custom set that will automatically convert objects into a different form for storage in the set (see Using a Python Dictionary as a key non-nested) for backgroun …
