Tagged Questions
The sets tag has no wiki summary.
95
votes
8answers
51k views
C# Set collection?
Does anyone know if there is a good equivelent to Java's Set collection in C#.
It's one of the few things I miss from having moved to C#.
I am aware that you can have a "pretend" set using a ...
46
votes
13answers
32k views
Why doesn't java.util.Set have get(int index)?
I'm sure there's a good reason, but could someone please explain why the java.util.Set interface lacks get(int Index), or any similar get() method?
It seems that sets are great for putting things ...
36
votes
2answers
10k views
25
votes
3answers
1k views
Why is Scala's immutable Set not covariant in its type?
EDIT: Re-written this question based on original answer
The scala.collection.immutable.Set class is not covariant in its type parameter. Why is this?
import scala.collection.immutable._
def foo(s: ...
22
votes
2answers
373 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 ...
18
votes
12answers
6k views
Elegant way to remove items from sequence in Python?
When I am writing code in Python, I often need to remove items from a list or other sequence type based on some criteria. I haven't found a solution that is elegant and efficient, as removing items ...
18
votes
6answers
2k views
Is there a “Set” data structure in .Net?
Ideally, I'm looking for a templated logical Set class. It would have all of the standard set operations such as Union, Intersection, Etc., and collapse duplicated items.
I ended up creating my own ...
14
votes
8answers
10k views
Is there any kind of hashCode function in javascript?
Basically what I'm trying to do is create an object of unique objects, a set. I had the brilliant idea of just using a JS object with objects for the property names. Such as,
set[obj] = true;
This ...
13
votes
8answers
5k 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>();
mySet.add(1);
...
11
votes
3answers
4k views
Sets in Ruby?
I need a collection that is like a set. Basically I'm scanning a long string and adding words to the collection but I want to be able to detect when there are duplicates.
If sets aren't available, ...
11
votes
3answers
5k views
Classical set operations for java.util.Collection
Is there any built-in functionality for classical set operations on the java.util.Collection class? My specific implementation would be for ArrayList, but this sounds like something that should apply ...
9
votes
3answers
1k views
An efficient code to determine if a set is a subset of another set
I am looking for an efficient way to determine if a set is a subset of another set in Matlab or Mathematica.
Example:
Set A = [1 2 3 4]
Set B = [4 3]
Set C = [3 4 1]
Set D = [4 3 2 1]
The output ...
9
votes
6answers
671 views
Minimum set cover [PHP]
Minimum Set Cover is a question where you must find the minimum number of sets needed to cover every element.
For example, imagine that we have a set of X=array(1,2,3,4,5,6) and 5 another set S, ...
9
votes
3answers
2k views
How to simulate tuples and sets in C#?
I want to use some features of python like as Tuples and Sets in c#. should I implement them? or there are already implemented? could anybody knows a library of dynamic data structures for .net ...
9
votes
12answers
284 views
Is there a data structure that holds sets of data in .NET?
I'm looking for a data structure similar to a dictionary that returns the set of all related items to a key.
For example, I would use it like this:
var data = new FancyDataStructure();
data.Add(new ...
9
votes
9answers
5k views
Is there a basic Java Set implementation that does not permit nulls?
The API for the Java Set interface states:
For example, some implementations prohibit null elements, and some have restrictions on the types of their elements
I am looking for a basic Set ...
8
votes
6answers
473 views
divide an array into two sets with minimal difference
An interview question that I came across:
Given an array of numbers, divide the numbers into two sets such that difference between the sum of numbers in two sets is minimum.
This is the idea that I ...
8
votes
2answers
387 views
How can I create a Set of Sets in Python?
I am fairly new to Python.
I have done some looking online and read someone say somewhere that it is impossible to create a set of sets in Python. Is there a way around this? ie...
Starting with ...
8
votes
4answers
313 views
Find set of numbers in one collection that adds up to a number in another
For a game I'm making I have a situation where I have a list of numbers – say [7, 4, 9, 1, 15, 2] (named A for this) – and another list of numbers – say [11, 18, 14, 8, 3] (named B) ...
8
votes
8answers
1k views
what does O(N) mean [closed]
Possible Duplicate:
What is Big O notation? Do you use it?
Hi all,
fairly basic scalability notation question.
I recently recieved a comment on a post that my python ordered-list ...
8
votes
9answers
3k 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<SomeClass> ...
8
votes
5answers
2k views
Java: Is there an easy, quick way to AND, OR, or XOR together sets?
That is, if I had two or more sets, and I wanted to return a new set containing either:
All of the elements each set has in common (AND).
All of the elements total of each set (OR).
All of the ...
7
votes
1answer
155 views
Is this a minimal set-cover problem?
I have the following scenario (preliminary apologies for length, but I wanted to be as descriptive as possible):
I am presented with a list of "recipes" (Ri) that must be fulfilled, in the order ...
7
votes
8answers
794 views
Python set intersection question
I have three sets:
s0 = [set([16,9,2,10]), set([16,14,22,15]), set([14,7])] # true, 16 and 14
s1 = [set([16,9,2,10]), set([16,14,22,15]), set([7,8])] # false
I want a function that will return ...
7
votes
4answers
783 views
Given two arrays a and b .Find all pairs of elements (a1,b1) such that a1 belongs to Array A and b1 belongs to Array B whose sum a1+b1 = k
I am looking for the solution of following algorithm with minimal time and space complexity.
Given two arrays a and b, find all pairs of elements (a1,b1) such that a1 belongs to Array A and b1 ...
7
votes
5answers
267 views
Is python's “set” stable?
The question arose when answering to another SO question (there).
When I iterate several times over a python set (without changing it between calls), can I assume it will always return elements in ...
7
votes
5answers
1k views
looking for a set union find algorithm
I have thousands of lines of 1 to 100 numbers, every line define a group of numbers and a relationship among them.
I need to get the sets of related numbers.
Little Example:
If I have this 7 lines of ...
7
votes
4answers
504 views
Please help me find the official name of this programming approach
I [surely re] invented this [wheel] when I wanted to compute the union and the intersection and diff of two sets (stored as lists) at the same time. Initial code (not the tightest):
dct = {}
for a in ...
7
votes
9answers
778 views
Functional Data Structures in Java
Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?
7
votes
2answers
1k views
How do you determine if two HashSets are equal (by value, not by reference)?
I am trying to determine if two HashSet objects in .NET 3.5 (C#) are equal sets, i.e. contain the same values. This seems like something one would obviously want to do but none of the provided ...
7
votes
4answers
535 views
Representing sparse integer sets?
What is a good way to represent sparse set of integers (really C memory addresses) in a compact and fast way. I already know about the obvious things like bit-vectors and run-length encoding. but I ...
7
votes
7answers
2k views
How to retrieve an element from a set without removing it?
Suppose the following:
>>>s = set([1, 2, 3])
How do I get a value (any value) out of s without doing s.pop()? I want to leave the item in the set until I am sure I can remove it - ...
6
votes
3answers
194 views
How can I efficiently determine if two lists contain elements ordered in the same way?
I have two ordered lists of the same element type, each list having at most one element of each value (say ints and unique numbers), but otherwise with no restrictions (one may be a subset of the ...
6
votes
5answers
290 views
How to achieve better efficiency re-inserting into sets in C++
I need to modify an object that has already been inserted into a set. This isn't trivial because the iterator in the pair returned from an insertion of a single object is a const iterator and does not ...
6
votes
1answer
357 views
Determine the relative complement of two IEnumerable<T> sets in .NET
Is there an easy way to get the relative complement of two sets? Perhaps using LINQ?
I have to find the relative compliment of a set A relative to B. Both A and B are of type HashSet<T> but I ...
6
votes
3answers
292 views
What is the best way to translate this recursive python method into Java?
In another question I was provided with a great answer involving generating certain sets for the Chinese Postman Problem.
The answer provided was:
def get_pairs(s):
if not s: yield []
else:
...
6
votes
2answers
810 views
Is there a library for a Set data type in Javascript?
Since Javascript doesn't have a built in set datatype has anyone come across a decent library for sets and set operations like union, intersection, etc?
6
votes
4answers
411 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 on insert the ...
6
votes
11answers
2k views
STL sorted set where the conditions of order may change
I have a C++ STL set with a custom ordering defined.
The idea was that when items get added to the set, they're naturally ordered as I want them.
However, what I've just realised is that the ...
6
votes
3answers
565 views
Using set.insert( key ) as a conditional?
I am trying to use set.insert (key) as a conditional, where if the key is inserted correctly (meaning that the key does NOT already exsist in the set ) then it should go on and perform some kind of ...
5
votes
5answers
288 views
How to compare a list of lists/sets in python?
What is the easiest way to compare the 2 lists/sets and output the differences? Are there any built in functions that will help me compare nested lists/sets?
Inputs:
First_list = [['Test.doc, ...
5
votes
4answers
285 views
Fair product distribution algorithm
Here is my problem:
There are n companies distributing
products.
All products should be distributed in k days
Distributing products of company Ci should be consecutive - it means that it can be ...
5
votes
2answers
218 views
How do I use clojure.set/difference? Why won't it work on a PersistentSet?
The following code:
(require '[clojure.set])
(println (clojure.set/difference '("a" "b" "c" "d") '("c" "d" "e" "f")))
gives me the following error:
java.lang.ClassCastException: ...
5
votes
2answers
185 views
Finding subsets that can be completed to tuples without duplicates
We have a collection of sets A_1,..,A_n. The goal is to find new sets for each of the old sets.
newA_i = {a_i in A_i such that there exist (a_1,..,a_n) in (A1,..,An) with no a_k = a_j for all k and ...
5
votes
3answers
465 views
How would I convert this Delphi Set code to C#?
I've got the following Delphi code that defines a set and then a simple if statement that checks if a passed value of the set type falls within certain values.
TOverwriteMode = (omNone, ...
5
votes
1answer
704 views
Change Multiple Image Sources Javascript
I am creating a simple image gallery, and I would like to create multiple sets of images. On the click of a link all of the images in the link's given set will change.
here is my current code:
...
5
votes
2answers
153 views
A set implementation in LaTeX?
Consider the following straightforward implementation of a list in latex:
\newcommand{\add@to@list}[2]{%
\ifx#2\@empty%
\xdef#2{#1}%
\else%
\xdef#2{#2,#1}%
\fi%
}%
I wonder if there ...
5
votes
6answers
536 views
More efficient way to count intersections?
I have a list of 300000 lists (fiber tracks), where each track is a list of (x,y,z) tuples/coordinates:
tracks=
[[(1,2,3),(3,2,4),...]
[(4,2,1),(5,7,3),...]
...
]
I also have a group of masks, ...
5
votes
2answers
154 views
Finding the minimum set of properties that describe a referent in a set of entities
I was wondering if someone could help me get pointers to solve this problem. A link to algorithms would be great, but pointers to papers/info is also good.
The problem is as follows. Suppose I have a ...
5
votes
4answers
4k views
Where can I find good mimetype icons?
I would like to find good icons for mimetypes to use in my (filetype, mimetype) -> icon website :
http://stdicon.com/
I currently have
apache
crystal
gnome
silk
tango
but if there are other ...