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.

learn more… | top users | synonyms

4
votes
3answers
57 views

Java: optimize hashset for large-scale duplicate detection

I am working on a project where I am processing a lot of tweets; the goal is to remove duplicates as I process them. I have the tweet IDs, which come in as strings of the format "166471306949304320" ...
1
vote
2answers
63 views

What is the Time Complexity of size() for Sets in Java?

I know, it seems like a stupid question, you would expect that the time complexity of size() on any collection would be O(1) - but I'm finding that an "optimization" in my code which requires a call ...
4
votes
2answers
70 views

HashSet of Array of int HashSet<int[]> in java

I'm trying to create a set of arrays of ints, the thing is that if I try to do: HashSet<int[]> s = new HashSet<int[]>(); int a1[] = {1,2,3}; int a2[] = {1,2,3}; s.add(a1); s.add(a2) ...
-4
votes
4answers
52 views

Check if HashSet/HashMap contains Object [closed]

if I want to check if a certain Object of class MyClass is contained in an ArrayList or the like, I can just overwrite equals. public boolean equals(Object o) { ..... } but what do I have to do ...
0
votes
4answers
57 views

Avoid Duplicate Records - HashSet

I'm trying to multiple objetcs of DTO into an ArrayList through a for Loop. Once all objects are added, for avoiding duplicates I'm converting ArrayList into HashSet to avoid duplicate records. Code ...
1
vote
4answers
25 views

copy elements of arraylist in a set with the same order java

I've sorted an arraylist of int in ascending order, but when I copy it in a set, the elements are not sorted anymore. I'm using this : HashSet<Integer> set = new ...
0
votes
3answers
40 views

Searching Scrabble dictionary for word with a blank tile (“ ”) character

Let's say I have a String called s that represents a move on a Scrabble board: "AARDV RK" I have a HashSet<String> called dict that contains the entire Scrabble Dictionary (~180,000 words!). ...
-2
votes
3answers
49 views

Exception in thread “main” java.util.ConcurrentModificationException

When I run the below code, I get an exception. I searched but couldn't find any solution. Exception in thread "main" java.util.ConcurrentModificationException at ...
2
votes
1answer
31 views

Hashset delete old instances

I have a hashset of my custom class that I serialize and deserialize, how can I delete old instances of classes that are older than say 1 day?
2
votes
3answers
59 views

Java: Duplicate objects getting added to set?

If I run the below code then the output is 2 which means that the set contains 2 elements. However I think that set should contain 1 since both the objects are equal based on hashcode() value as well ...
0
votes
4answers
46 views

How can I take a Java Set of size X and break into X/Y Sets?

I have a Java Set (specifically HashSet). Suppose it has a size of 10k. How can I break it into 5 Sets each of size 2k?
1
vote
2answers
42 views

Create counting class extending Hashset / Inheritance

If we consider the following class to count object added in an HashSet : public class CountingHashSet<E> extends HashSet<E> { public int addCount = 0; @Override public ...
0
votes
4answers
46 views

Finding duplicate values between two arrays using HASHSET

I am trying to create a simple program to find duplicate elements in two arrays. return True if duplicate elements exists else return false. I have written this much of code but it always returns ...
1
vote
1answer
26 views

Changing the elements in a set changes the 'equals' semantics

Imagine that we have this piece of code. public class HashAddAfter { private class A { public int value; public A(int value) { this.value = value; } ...
0
votes
3answers
49 views

HashSet showing more values

class KeyMaster { public int i; public KeyMaster(int i) { this.i = i; } public boolean equals(Object o) { return i == ((KeyMaster)o).i; } public int hashCode() { return i; } } public class ...
2
votes
4answers
99 views

Why won't my HashSet allow me to add two of the same instance, if their equals() says they're false?

The documentation for HashSet.add says Adds the specified element to this set if it is not already present. More formally, adds the specified element e to this set if this set contains no element ...
1
vote
1answer
62 views

Do the HashSet set operators work based on GetHashCode() or Equals()?

The C# HashSet defines many set operators such as ExceptWith(...) that require comparing elements to another collection. Do these methods work based on the HashCode of the objects they are comparing, ...
0
votes
1answer
42 views

My created equals() and hashcode() are not doing anything

In my program I have a class called Cell, defined like so: public class Cell { private int x; private int y; public Cell (int x, int y) { this.x = x; this.y = y; } ...
3
votes
1answer
130 views

why hashmap is faster than hashset?

I have been reading/searching the reason why hashmap is faster than hashset I am not quite understanding the following statement. HashMap is faster than hashset because the values are associated ...
2
votes
3answers
69 views

Determine if HashSet<String> contains a different cased string

I have a large set of strings, including many duplicates. It is important that all of the duplicates have the same casing. So this set would fail the test: String[] strings = new String[] { "a", "A", ...
0
votes
2answers
61 views

HashSet contains duplicate entries

A HashSet only stores values ones, when the equals method says that they're the same. Thats what I thought. But now i'm adding Elements to a HashSet where the equals method returns true and the size ...
-3
votes
1answer
28 views

Ordering results from Collections.frequency

I have got an ArrayList with 500+ words in. I'm trying to organise them into a list where the word that appears the most is at the top and then the 2nd most frequent and so on. So far I've managed to ...
0
votes
3answers
52 views

How to find an object in a Set of custom objects

The code below contains a Set of CustomObjects. I am trying to search an object in it. I've overridden equals() method to match it with a specific field, am not able to understand why is it not able ...
-2
votes
0answers
8 views

Given a set of 2 email lists that get updated every month write some code to define which emails are new, which are old, and which are deleted

I am new to Java and have a basic understanding of the fundamentals, I would appreciate if someone could tell me where to start, I need a jumping off point. I think I will need to use a String Array, ...
1
vote
1answer
40 views

Java - HashSet with char[] elements

I have a problem that I need help with. I have a HashSet that contains char[]. The problem is that I can't check if a value exists using the method contains(), it return false even if the value exists ...
1
vote
2answers
32 views

HashSet compilation error

The only thing I want to do is putting an array (temp_X) into a HashSet, but I got the error for the HashSet: no suitable constructor found for HashSet(List) public PSResidualReduction(int ...
1
vote
5answers
138 views

HashSet “cannot convert from element type Object to Integer” when expecting a HashSet of Integer

In the following code I expect pn.get(8).get(8) to return an array of Integers (in this example length of array is 1, but in my program it's longer). Instead I get an array of Objects. Can someone ...
0
votes
1answer
31 views

Collision Hash Function

Hi all I have a big problem with my hash function. I try to explain my problem : I have a set of char and I want to do an hash function because I want to change the set with hash set, for each char ...
2
votes
3answers
98 views

Removing duplicates from a List or HashSet in c#

I have a very simple test method that returns a List that has a number of duplicates, but when it did not I thought I'd try HashSet as that should remove duplicates, but it appears I need to override ...
0
votes
1answer
47 views

How can I ensure the ids for the new Students is unique

I have reading a file which set the ids to unknown and i have creating a uniqe id for each student and I wrote then to a file, for example if create Student and add it to the list (HashMap). How can ...
0
votes
6answers
59 views

ensuring all the ids value in the hashMap are different?

The method below (generateID())it generate a random ids, And when i store students in the HashMap i want to check if the generated id is not exist in the hashMap value and if its exists I want to ...
2
votes
6answers
53 views

Point to a hashSet java

How would I write an if statement that says: if pos2[targetPos3] doesn't point to a hashset (is not a hashset) ? I tried that but it still gives me a null point exception. Object[] pos2; int ...
0
votes
2answers
62 views

Efficient way to get all elements from a HashSet in .NET

Say, I have a HashSet with elements: HashSet<int> hsData = new HashSet<int>(); and at some point I need to process those elements (one by one). I can of course convert it into an array ...
4
votes
3answers
77 views

Creating a HashSet for Doubles

I wish to create a HashSet for real numbers (at present Doubles) using a defined tolerance (epsilon), (cf Assert.assertEquals(double, double, double) Since using Double.equals() only works for exact ...
1
vote
1answer
99 views

Odd equality result with a HashSet of an Enum type?

I have two hash sets that I've constructed in different ways that contain all the enum values. setWithAllEnums.Equals(setToTest); // Returns false ...
1
vote
1answer
49 views

Load factor with chained Hash Set

I was given as an assignment to implement a chained hash set: The set is backed by an array of Linked Lists (I'll call it A[]), and if two different values get the same hash-value k they are added to ...
1
vote
1answer
26 views

Priority Queue object comparator with hashset object

HashSet Object ct_set City Object how can i initialize a ProrityQueue object ct_pq with elements in ct_set with order from my populatation comparator
0
votes
0answers
13 views

Using a hashset to break up a .txt file

I am trying to write a simple plagiarism program by taking one file and and comparing it to other files by splitting up each file every six words and comparing then to the other files, which is also ...
0
votes
2answers
51 views

How do I add a value to a hash set?

I'm working on a practice problem that requires me to add a value into a hashmap. But I can't figure out why I keep getting an error message on the line courseName.add(student); Here is my code: ...
0
votes
3answers
59 views

nested hashset of lists?

I'm working on one of the project Euler problems, and I wanted to take the approach of creating a list of values, and adding the list to a Hashset, this way I could evaluate in constant time if the ...
8
votes
1answer
159 views

hashset, dictionary, arraylist: can`t see the forest for the trees

About: My mathematical program will have a giant collection of items to iterate through. It will mainly consist of an item and a pointer to an other item ((int)item,(int) pointer), resembling a key ...
1
vote
1answer
91 views

Remove a key in hashmap when the value's hashset is Empty

I have a hashmap that maps strings keys to hashsets values, and I want to remove a key from the hashmap when the hashmaps's hashset value is empty. I'm having trouble approaching this. Here's what ...
-2
votes
2answers
81 views

Hashmap NoSuchElementException error [closed]

I've been struggling with an java.util.NoSuchElementException error when I execute printAll. public class myDatabase { Map<String, HashSet<Integer>> mapOfSets = new ...
0
votes
0answers
50 views

Unmarshal set in custom converter

I'm trying to convert an EnumMap containing Set entries to and from XML with XStream. The Set is a custom Set containing just a HashSet as a property. The marshalling to XML is going well, but I can't ...
4
votes
1answer
73 views

enumerate hashset and delete elements from it

I want to go through a HashSet and make a (complicated) check on each element which results in saving the element, removing the element from the HashSet or doing nothing. Since a foreach loop does ...
0
votes
1answer
53 views

java string and hashset-membership matching

I am converting single Chinese characters into roman letters(pinyin) using package pinyin4j in java. However, this will often yield multiple pinyins for one character(same character has different ...
0
votes
1answer
99 views

Make A Hashmap with its keys being Strings values being HashSets

Trying to make a Hash Map with keys of strings, and values of HashSets. I want the hash sets to be all integers Set<String> numbersSet = new HashSet<Integer>(); // won't work: ...
0
votes
1answer
47 views

HashSet for unique strings up to millions of records?

I am generating millions of unique string. I am using HashSet<> for this purpose. I have to store the results in text file periodically. I noticed my code takes too much time at following lines: ...
-1
votes
1answer
83 views

HashSet storing equal objects

Below is the code for finding duplicate objects from a list of object. But for some reason the hashset is storing even the equal objects. I am certainly missing out something here but when I check ...
2
votes
6answers
59 views

Java set and contains

I read the statement: HashSet offers constant time performance for the basic operations (add, remove, contains and size). Is 'contains' true here? While shortlisting the bucket is a contant-time ...

1 2 3 4 5 10