3
votes
1answer
127 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 ...
0
votes
1answer
45 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 ...
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 ...
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
77 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
1answer
98 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: ...
17
votes
1answer
334 views

Hash-consing in F# and weak hash tables in .net

Hash-consing consists in keeping in memory only one copy of a given object ; that is, if two objects are semantically equal (same content) then they should be physically equal (same location in ...
0
votes
2answers
110 views

how to parcel hashset with custom objets

im implementing an application in android and i need to make my objets parcelables to move between activities. I use hibernate in the server so my classes have hashsets as atribute and i dont know how ...
0
votes
0answers
30 views

Mapping synonyms to the same key in hashmaps

I need to code the following in one of my methods: Create a new HashMap (call it synonymMap) that maps synonyms to a unique key in the responseMap (for example, map "crash", "crashes" and "crashed" ...
1
vote
5answers
217 views

Definitive documentation on Java HashSet / HashMap custom object as key?

I'm trying to find the definitive documentation on how to use a custom object as the key for HashMap or as the object stored in HashSet. From reading various postings, I've somehow discovered that ...
2
votes
6answers
221 views

Find the Biggest number in HashSet/HashMap java

I would like to find the biggest number in HashSet and HashMap. Say I have the number [22,6763,32,42,33] in my HashSet and I want to find the largest number in my current HashSet..how would i do this? ...
0
votes
2answers
87 views

How do I iterate over (and make changes to) a collection that is the value of another collection

I have a map that maps bytes to sets of bytes. I want to walk through the map and make changes to the set. private HashMap<Byte, HashSet<Byte>> table; ... Iterator<Entry<Byte, ...
-6
votes
1answer
185 views

I want to ask about three concepts in java(Array list, Hash map, Hash set) [closed]

As I was revising my course, I came up with those conclusions about each definition, please anyone correct me if I misunderstood anything I understood that an arraylist is a bit similar to array but ...
0
votes
1answer
51 views

Is it possible a hash code of mobile number is converted in to real number i want to know mobile number from my mobile number hash code

Is it possible a hash code of mobile number is converted in to real number i want to know mobile number from given mobile number hash code?Just as a testing purpose
0
votes
1answer
92 views

Consistency of contains method on a HashSet and HashMap

Why does containsAll method on a HashSet does not remain consistent if remove is called on the Set whereas a containsValue method on a HashMap remains consistent after a value is removed After a ...
0
votes
3answers
66 views

HashMap in java cannot hash MyObject

I have defined a simple private class named SetOb which contains an int and a Set data structure. I have a HashMap in the 'main' method with SetOb as Key and Integer as value. Now as you can see in ...
5
votes
4answers
169 views

What happens to the lookup in a Hashmap or Hashset when the objects Hashcode changes

In a Hashmap the hash code of the key provided is used to place the value in the hashtable. In a Hashset the obects hashcode is used to place the value in the underlying hashtable. i.e the advantage ...
-2
votes
1answer
152 views

Populating hashmap from a hashset from an other class

I have a hashset in a class called myClass that contains 6 strings. I want to be able to create a hashmap and use these 6 strings as keys in another class called Maps, and they values beside. how ...
4
votes
5answers
1k views

Adding duplicate element in HashSet/HashMap in Java

Please consider the below piece of code: HashSet hs = new HashSet(); hs.add("hi"); -- (1) hs.add("hi"); -- (2) hs.size() will give 1 as HashSet doesn't allow duplicates so only one element will be ...
0
votes
1answer
187 views

using hashset values as keys in a hashmap

My problem is that I have 2 classes one called Set this contains a hashset of values, now these values in the hashset have the used as keys in a hashmap that is in a seperate class called Map and I ...
0
votes
1answer
73 views

HashSet values are computed wrongly

I am using HashSet which has some attributes used for all elements and then adding this Hashset to a HashMap corresponding for each element. Additionally few attributes are added for specific ...
2
votes
2answers
251 views

Why do Set data structures in Java use Map internally?

I am wondering why do HashSet uses HashMap, TreeSet uses TreeMap, and LinkedHashSet uses LinkedHashMap internally behind the scene ? since Set is only carrying and storing the key but the value, so ...
1
vote
3answers
130 views

Java storage and lookup of HashMap in HashSet

I have a set with multi-dimensional hashmaps, like so: Set<HashMap<String, HashMap<String, String>>> myHashSet = new HashSet<HashMap<String, HashMap<String, ...
1
vote
1answer
90 views

md5 is a good function for finding duplicate files?

I needed to check if a picture is included in a big set of pictures already (more than 2 million pictures). So, I implemented a persistent hash list using md5 as hash function. Later, i have read md5 ...
3
votes
3answers
613 views

Speedup HashSet and HashMap performance

In Java, I have: Set<Integer> set = new HashSet<Integer>(); callVoidMethod(set); ... public static void callVoidMethod(Set<Integer> set) { Set<Integer> superset = new ...
0
votes
4answers
244 views

I am getting java.util.ConcurrentModificationException thrown while using HashMap

How do i remove the key value pair in the code below comparing with elements in HashMap? Map<BigDecimal, TransactionLogDTO> transactionLogMap = new HashMap<BigDecimal, ...
0
votes
2answers
103 views

Are there problems of implementing HashSet using HashMap?

In java HashSet is implemented using a HashMap. So when we add an item to the set the following code is executed. public boolean add(E e) { return map.put(e, PRESENT)==null; } what happens when ...
0
votes
1answer
222 views

Java: Modify id that changes hashcode

I use HashSet and I need to modify the ID of an object, but it changes hashcode and breaks HashSet and rules of hashCode() method. What is best solution: to delete object from Set and add object ...
0
votes
2answers
106 views

Regarding collection framework

I have some questions about Java Collection objects... When we add objects to a collection like HashSet or HashMap, how the the objects internally stored? Why doesn't Hashtable allow null values?
0
votes
2answers
227 views

Java - HashMap and HashSet not backed by Object.hashCode()?

So I'm trying to write a server, which tracks its clients by a uniquely-generated ID using a HashMap<ClientID,Client>. The idea is, if I'm an admin and I want to boot somebody off the server, I ...
0
votes
4answers
158 views

HashSet my class doesn't contain issue

I have a class that is similar to this: public class Int16_2D { public Int16 a, b; public override bool Equals(Object other) { return other is Int16_2D && a == ...
3
votes
3answers
385 views

Can i have HashSets as the keys in a HashMap? Suggest an alternative if not

Edit: explained the problem properly now. I have a hashmap where i want to store sets of words seen together (key) and the lines in which they were seen together(value). This is the structure i came ...
1
vote
1answer
275 views

Need to rearrange HashMap key/value pairs

I have set of key/value paired data in the form of a HashMap that that I am required to manipulate. Here is the signature of the object I am looking at: Map<Consumer, ...
0
votes
2answers
411 views

a hash set can find the smallest or largest element with O(1)?

I need to understand the architecture and functions of hash set very well. Compared with STL::set, what is the advantage of hash set compared with STL::set ? I think the O(1) time to do search. If ...
0
votes
6answers
1k views

what is faster hashset clear or new hashset?

assuming I have defined a HashSet<String> set. What is better in terms of performance: set.clear; or set = new HashSet<String>(); EDIT: the reason I am checking this is that ...
4
votes
4answers
2k views

Randomly getting elements in a HasMap or HashSet without looping

I have roughly 420,000 elements that I need to store easily in a Set or List of some kind. The restrictions though is that I need to be able to pick a random element and that it needs to be fast. ...
1
vote
1answer
1k views

java.lang.ArrayStoreException in java.util.Hashset

Here is the stack trace : java.lang.ArrayStoreException at java.util.HashMap.transfer(Unknown Source) at java.util.HashMap.resize(Unknown Source) at ...
0
votes
3answers
967 views

How to make the java HashSet / HashMap work with any Object?

Is it possible to make HashSet work with any Object ?? I tried to make the Object implement Comparable but it didn't help import java.util.HashSet; public class TestHashSet { public static void ...
30
votes
3answers
10k 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 ...
4
votes
3answers
1k 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. ...
5
votes
4answers
545 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 ...
0
votes
3answers
203 views

Map[] myArr, each with <K>Integer, <V>HashSet … can't get to HashSet (Java)

I'm not able to navigate down to the HashSets in my datastructure I declared an array of Map[] and populated it with HashMap with K of Integer, and V of HashSet of String but was unable to add items ...
1
vote
3answers
667 views

How to create a method to get the Key of a value(string) in a hashmap

I have an assignment, This is my HashMap initialization.. I can only use standard JAVA API. private static HashMap<String, HashSet<String>> hMap = new HashMap<String, ...
2
votes
4answers
331 views

What causes the slightly unpredictable ordering of the iterator() for the java.util.HashSet and HashMap.keySet() classes?

Six years ago, I burned several days trying to hunt down where my perfectly deterministic framework was responding randomly. After meticulously chasing the entire framework ensuring that it was all ...
6
votes
4answers
748 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 ...
16
votes
14answers
16k views

What is the difference between HashSet and HashMap…?

Apart from the fact that HashSet does not allow duplicate values, what is the difference between HashMap and Hashset...? I mean implementation wise.....? It's a little bit vague because both use hash ...
18
votes
6answers
6k 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 ...
1
vote
7answers
2k views

Using the keySet() method in HashMap

I have a method that goes through the possible states in a board and stores them in a HashMap void up(String str){ int a = str.indexOf("0"); if(a>2){ String s = ...
17
votes
9answers
13k 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 ...

1 2