开发者

Is there a sorted java collection which handles duplicates?

开发者 https://www.devze.com 2022-12-27 18:38 出处:网络
I need a collection that behaves something like C++ multim开发者_如何学JAVAap, but I also need to be able to get elements by a range of keys.You can look into Google Collections. It has multiple imple

I need a collection that behaves something like C++ multim开发者_如何学JAVAap, but I also need to be able to get elements by a range of keys.


You can look into Google Collections. It has multiple implementations for MultiMap.


There is no built-in multimap collection in Java. To solve this you can map to every key a list of values: Map<String, List<String>>, for example. Otherwise there are third-party libraries with implemented multimaps - here is one of them.


There is a simple hack around creating multimap sortable collections in java...Use the dataset TreeMap and for keys enter key*10^4+counter. This way you are storing duplicate key values in the map (by adding counter they are actually not duplicates, so you can store the in treeMap, but you know not to use the last four digits of the integer key values), however your dataset is being sorted using your original key values. Note that depending how large is your dataset you might want to adjust 10^n to make sure that it is larger then the number of entries in your data.

0

精彩评论

暂无评论...
验证码 换一张
取 消