3
votes
8answers
111 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
…
3
votes
5answers
148 views
Missing something HashSet duplicates
Ok Apparently I'm missing something here. I cannot seem to get a HashSet to work. I'd imagine it's probably something easy I'm just overlooking.
import testing.Subclass;
import java.util.HashSet;
…
3
votes
9answers
543 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 …
3
votes
3answers
256 views
Remove from a HashSet failing after iterating over it
I'm writing an agglomerative clustering algorithm in java and having trouble with a remove operation. It seems to always fail when the number of clusters reaches half the initial number.
In the …
3
votes
5answers
801 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 …
3
votes
3answers
2k views
HashSet problem — equals and hashCode with contains working differently than I’d expect
I have the following code:
class IncidentTag:
def __init__(self,tag):
self.tag = tag
def equals(self,obj):
return self.tag.equals(obj.tag)
def hashCode(self):
…
2
votes
3answers
115 views
Convert a HashSet<T> to an array in .NET
How do I convert a HashSet<T> to an array in .NET?
2
votes
4answers
643 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 …
2
votes
7answers
1k 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 …
2
votes
4answers
350 views
How to use Comparer for a HashSet
As a result of another question I asked here I want to use a HashSet for my objects
I will create objects containing a string and a reference to its owner.
public class Synonym
{
private string …
2
votes
2answers
224 views
Why is HashSet<T>.IsReadOnly explicit?
This
var h = new HashSet<int>();
var r = h.IsReadOnly;
does not compile. I have to do
var r = ((ICollection<int>)h).IsReadOnly;
why wasn't IsReadOnly implemented normally?
(I'm not …
2
votes
6answers
423 views
Modifying a set during iteration java
I'm looking to make a recursive method iterative.
I have a list of Objects I want to iterate over, and then check their subobjects.
Recursive:
doFunction(Object)
while(iterator.hasNext())
{
…
2
votes
1answer
379 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 …
1
vote
5answers
196 views
Get a HashSet out of the keys of a HashMap?
Hi,
I have a pretty big (100'000s of entries) HashMap. Now, I need a HashSet containing all the keys from this HashMap. Unfortunately, HashMap only has a keySet() method which returns a Set but not a …
1
vote
7answers
134 views
IEqualityComparer for Value Objects
I have an immutable Value Object, IPathwayModule, whose value is defined by:
(int) Block;
(Entity) Module, identified by (string) ModuleId;
(enum) Status; and
(entity) Class, identified by …
