Tagged Questions
A HashSet encapsulates operations that allow for the comparison of elements in collections. HashSets are frequently used to determine overlapping and unique elements within a collection.
32
votes
8answers
19k views
Hashset vs Treeset
I've always loved trees, that nice O(n*lg(n)) and the tidyness of them. However, every software engineer I've ever known has asked me pointedly why I would use a treeset. From a CS background, I don't ...
19
votes
6answers
1k views
.NET: How to efficiently check for uniqueness in a List<string> of 50,000 items?
In some library code, I have a List that can contain 50,000 items or more.
Callers of the library can invoke methods that result in strings being added to the list. How do I efficiently check for ...
15
votes
9answers
4k views
When should I use the HashSet<T> type?
I am exploring the HashSet<T> type, but I don't understand where it stands in collections.
Can one use it to replace a List<T>? I imagine the performance of a HashSet<T> to be ...
14
votes
5answers
6k views
Remove Elements from a HashSet while Iterating
So, if I try to remove elements from a Java HashSet while iterating, I get a ConcurrentModificationException. What is the best way to remove a subset of the elements from a HashSet as in the ...
13
votes
6answers
881 views
Efficient way to clone a HashSet<T>?
A few days ago, I answered an interesting question on SO about HashSet<T>. A possible solution involved cloning the hashset, and in my answer I suggested to do something like this:
...
13
votes
11answers
3k views
In java, what is the difference between a HashSet and HashMap…?
Apart from the fact that hashSet does not allow duplicate values, what is the difference between a HashMap and Hashset...?
I mean implementaion wise.....? It's a little bit vague because both use ...
11
votes
5answers
3k views
Why does HashSet implementation in Sun Java use HashMap as its backing?
Looking at the source of Java 6, HashSet<E> is actually implemented using HashMap<E,Object>, using dummy object instance on every entry of the Set.
I think that wastes 4 byte (on 32-bit ...
10
votes
9answers
5k views
is the Java HashMap keySet() iteration order consistent?
I understand that the Set returned from a Map's keySet() method does not guarantee any particular order.
My question is, does it guarantee the same order over multiple iterations. For example
...
9
votes
1answer
447 views
(UPDATED)C# Unit testing with Fake database context using a HashSet (pluralsight code)(New Q)
The short version:
In this video, Mr. Scott Allen explains how to test a controller.
But he does not show the full code of the class: FakeDbContext.
Is there someone who can help me finish it? He ...
9
votes
5answers
2k views
HashSet vs LinkedHashSet
What is the difference between them? I know that
A LinkedHashSet is an ordered version of HashSet that
maintains a doubly-linked List across all elements. Use this class instead of HashSet
...
8
votes
5answers
5k views
Does HashSet preserve insertion order?
Does the HashSet collection introduced in .NET 3.5 preserve insertion order when iterated using foreach?
The documentation states, that the collection is not sorted, but it doesn't say anything ...
7
votes
2answers
180 views
Why can't I preallocate a hashset<T> c#
Why can't I preallocate a hashset?
There are times when i might be adding a lot of elements to it and i want to eliminate resizing.
Thanks
7
votes
4answers
2k views
How to use HashSet<string>.Contains() method in case -insensitive mode?
How to use HashSet.Contains() method in case -insensitive mode?
7
votes
6answers
6k views
initialize java HashSet values by construction
I need to create a Set with initial values.
Set<String> h = new HashSet<String>();
h.add("a");
h.add("b");
Is there a way to do it in one command?
Thanks
7
votes
7answers
4k views
Why can't I retrieve an item from a HashSet without enumeration?
I'm looking for insight into the heads of HashSet designers. As far as I am aware, my question applies to both Java and C# HashSets, making me think there must be some good reason for it, though I ...
7
votes
4answers
3k views
Java: Collection RemoveAll Ignoring Case?
Ok so here is my issue. I have to HashSet's, I use the Removeall method to delete values that exist in one set from the other.
Prior to calling the method, I obviously add the values to the Sets. I ...
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 ...
6
votes
4answers
2k views
Java Hashset.contains() produces mysterious result
I don't usually code in Java, but recently I started not having a choice. I might have some major misunderstanding of how to properly use HashSet. So it might be possible something I did is just plain ...
6
votes
3answers
1k views
Java: fast disk-based hash set
I need to store a big hash set, able to contain up to approx 200 millions 40 bit values. Storing it as 200 millions 64 bit value would be acceptable (despite the 200 millions * 16 bits loss).
The ...
5
votes
2answers
101 views
How to access the reference values of a HashSet<TValue> without enumeration?
I have this scenario in which memory conservation is paramount. I am trying to read in > 1 GB of Peptide sequences into memory and group peptide instances together that share the same sequence. I am ...
5
votes
3answers
321 views
Why there is no ConcurrentHashSet against ConcurrentHashMap
HashSet is based on HashMap.
If we look at HashSet<E> implementation, everything is been managed under HashMap<E,Object>.
<E> is used as a key of HashMap.
And we know that HashMap ...
5
votes
4answers
227 views
What load factor should be used when you know maximum possible no of elements in HashSet
What load factor should I use when I really know the maximum possible no of elements in a HashSet ? I had heard that the default load factor of 0.75 is recommended as it offers good performance ...
5
votes
5answers
378 views
Mutable objects and hashCode
Have the following class:
public class Member {
private int x;
private long y;
private double d;
public Member(int x, long y, double d) {
this.x = x;
this.y = y;
this.d = d;
}
@Override
...
5
votes
2answers
249 views
Creating a unique list from dataset too big to fit in memory
I have a list of 120 million records of around 40/50 bytes each which is about 5.5/6 gigabytes of raw memory space not including any extra storage required to keep an array in memory.
I'd like to ...
5
votes
4answers
397 views
Why does HashSet have “Hash” in its name?
Why is Hashset called a "Hash"-set?
I understand we call hashtable or a hashmap since it's a key value store and when we put(), then the key is hashed and distributed evenly using a good hash ...
5
votes
1answer
362 views
Is the .Net HashSet uniqueness calculation completely based on Hash Codes?
I was wondering whether the .Net HashSet<T> is based completely on hash codes or whether it uses equality as well?
I have a particular class that I may potentially instantiate millions of ...
5
votes
2answers
698 views
Is HashSet<T> the fastest container to look up in?
I need to check that specific string contains in the set of others:
private bool Contains(string field)
{
return this.Fields.Contains(field); // HashSet<string> local property
}
What is ...
5
votes
9answers
18k views
Internal implementation of java.util.HashMap and HashSet
I have been trying to understand the internal implementation of java.util.HashMap and java.util.HashSet.
Following are the doubts popping in my mind for a while:
Whats is the importance of the ...
5
votes
7answers
3k views
Why have HashSet but not Set in C#?
Old question
My understanding is that C# has in some sense HashSet and set types. I understand what HashSet is. But why set is a separate word? Why not every set is HashSet<Object>?
New ...
4
votes
2answers
71 views
Unique entries in HashSet<List<T>> where list might have null entries
There is a List<MyElement> = new ArrayList<MyElement>();
class MyElement {
private Object[] values;
//...
}
I need to find all unique entries in this List. I would use HashSet, BUT ...
4
votes
3answers
270 views
std::hash_set vs std::unordered_set, are they the same thing?
I know hash_set is non-standard and unordered_set is standard. However, I am wondering, performance wise, what is the difference between the two? Why do they exist separately?
4
votes
1answer
216 views
The difference between 'HashSet' and 'Set' in Scala?
I'm very confused by Scala's HashSet and Set types as they both seem to do the same thing.
What is the difference between them?
Is it the same in Java?
In my reference it says that HashSet is an ...
4
votes
3answers
323 views
hashmap or hashset?
I have two list containing
List<MyObj>.
and MyObj has a "String ID" member.
I need to iterate them from time to time and sometimes I need to find objects which are similar on both.
...
4
votes
4answers
491 views
How to create a HashSet<List<Int>> with distinct elements?
I have a HashSet that contains multiple lists of integers - i.e. HashSet<List<int>>
In order to maintain uniqueness I am currently having to do two things:
1. Manually loop though ...
4
votes
5answers
503 views
Unique Collection in C#
Is there a collection in C# that will not let you add duplicate items to it? For example, with the silly class of
public class Customer {
public string FirstName { get; set; }
public string ...
4
votes
4answers
639 views
HashSet contains problem with custom objects
My Custom class that will be contained by HashSet
public class Person {
String name;
int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
...
4
votes
1answer
319 views
Entity Framework - related ICollection getting materialized into HashSet
I use EntityFramework POCO + proxies + lazy loading in my project. Today I was pretty surprized to see that the class Transaction has its related collection Rows materialized into HashSet (instead of ...
4
votes
1answer
266 views
HashSet.Remove not working with EqualityComparer
I am expecting a HashSet that has been created with a specified EqualityComparer to use that comparer on a Remove operation. Especially since the Contains operations returns true!
Here is the code I ...
4
votes
2answers
289 views
C#: Dictionary values to hashset conversion
Please, suggest the shortest way to convert Dictionary<Key, Value> to Hashset<Value>
Is there built-in ToHashset() LINQ extension for IEnumerables ?
Thank you in advance!
4
votes
4answers
162 views
What are the fastest-performing options for a read-only, unordered collection of unique strings?
Disclaimer: I realize the totally obvious answer to this question is HashSet<string>. It is absurdly fast, it is unordered, and its values are unique.
But I'm just wondering, because ...
4
votes
4answers
346 views
Java HashSet and data type Short, incompatibility?
Running this code:
public class SomeSet {
public static void main(String[] args) {
Set<Short> s = new HashSet<Short>();
for (short i = 0; i < 100; i++) {
...
4
votes
8answers
298 views
Simple Question:Output of below Java program
public class abc1 {
private String s;
public abc1(String s){this.s=s;}
public static void main(String args[])
{
HashSet<Object> hs=new HashSet<Object>();
abc1 a1= new ...
4
votes
2answers
3k views
HashSet versus Dictionary<T, K> w.r.t searching time to find if an item exists
HashSet<T> t = new HashSet<T>();
// add 10 million items
Dictionary<T, K> t = new Dictionary<T, K>();
// add 10 million items.
Whose .Contains method will return quicker?
...
4
votes
3answers
4k views
Java HashSet<Integer> to int array
I've got a HashSet with a bunch of (you guessed it) integers in it. I want to turn it into an array, but calling
hashset.toArray();
returns an array of Object type. This is fine, but is there a ...
4
votes
5answers
4k views
how to find and return objects in java hashset
According to the HashSet javadoc, HashSet.contains only returns a boolean. How can I "find" an object in a hashSet and modify it (it's not a primitive data type)?
I see that HashTable has a get() ...
3
votes
4answers
97 views
HashSet allows duplicate item insertion - C#
This kind of seems like a noob question, but I could not find an answer for this question specifically.
I have this class:
public class Quotes{
public string symbol;
public string ...
3
votes
1answer
53 views
SynchronizedSet and set operations in Scala
In REPL:
import collection.mutable.{ HashSet, SynchronizedSet }
var myPool = new HashSet[String] with SynchronizedSet[String]
myPool += "oh"
myPool += "yes"
myPool = myPool.tail
and I get:
error: ...
3
votes
5answers
142 views
HashSet in unit tests
I have a bunch of methods returning HashSet. I would like my unit test to check the state of these objects i.e confirm that someObject.getName()=="foobar".
However the hashset iterator order is not ...
3
votes
3answers
139 views
Overriding HashCode if I don't need to override equals
I have a custom class called Position. I want to use the following:-
Set<Position> s=new HashSet<Position>();
Do I have to override the HashCode() method in the Position class? I have ...
3
votes
1answer
89 views
C# - Unable to find confirmed answer for hashset contains comparison check
I tried to find out how C# goes about comparing objects in a HashSet for equality.
I couldn't find anything here: http://msdn.microsoft.com/en-us/library/bb359438.aspx
Only when I came to ...