开发者

get the number of instances of an element in a guava multiset without iterating

开发者 https://www.devze.com 2023-04-11 19:56 出处:网络
I have a multiset in guava and I would liketo retrieve the number of instances of a given element without iterating over this multiset (I don\'t want to iterate because I assume that iterating takes q

I have a multiset in guava and I would like to retrieve the number of instances of a given element without iterating over this multiset (I don't want to iterate because I assume that iterating takes quite some time, as it looks through all the collection).

To do that, I was thinking first to use the entryset() method of multiset, to obtain a set with single instances and their corresponding count. Then, transform this set into a hashmap (where keys are the elements of my set, and values are their instance count). Because then I can use the methods of hashmap to directly retrieve a value from its key - done! But this makes sense only if I can transform the set into the hashmap in a quick way (without iterating trhough all elements): is it possible?

(as I said I expect this question to be flawed on multiple counts, I'd be happy if you could shed light on the conceptual mistakes I probably make 开发者_开发问答here. Thx!)


Simply invoke count(element) on your multiset -- voila!


You may know in Guava Multiset is an interface, not a class.

If you just want to know the repeated number of an element, call Multiset.count(Object element).

Please forget my following statement:

Then if you are using a popular implementation HashMultiset, there is already a HashMap<E, AtomicInteger> working under the scene. That is, when the HashMultiset iterates, also a HashMap iterates. No need to transform into another HashMap.

0

精彩评论

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

关注公众号