There is a class called HashSet in Java
For example, I'll add following int-shaped value to HashSet,
[input]
1,2,3,4,5,6,1,2,3,1,
[hash structure]
1,1,1
2,2
3,3
4
5
6
Is there the collection to become such a structure?
|
There is a class called HashSet in Java For example, I'll add following int-shaped value to HashSet, [input]
[hash structure]
Is there the collection to become such a structure? |
|||||
|
|
No, but it's easy enough to wrap around a HashMap.
|
|||||
|
|
If I understand your question properly, you're looking for what's called a "Multiset". Java has no builtin Multisets, but you could build what you want with a |
|||||||||
|