0
votes
2answers
57 views
primitive multimap in java with good (insert, iteration) performance characteristics
I'm doing some heavy processing (building inverse indices) using ints/ longs in Java.
I've determined that (un)boxing of standard java.collections maps takes a big portion of the …
1
vote
2answers
77 views
C++ Find the number of elements in a range from an STL::multimap
I have a STL::multimap and I search it with equal_range to return an upper and lower bound. Can I find the number of elements in this range without iterating through them all and c …
2
votes
6answers
97 views
how does the stl’s multimap insert respect orderings?
I have some data which come with a integer index. I am continuous generating new data which needs to added to the collection of data I have, sorted by that index, at the same time …
1
vote
2answers
62 views
Multimap output after copying from map
This program stores pairs in a map, counting the number of times a word occurs. The goal is to have the data sorted by number of occurences and output in value/string form. Obviou …
0
votes
6answers
387 views
Map implementation with duplicate keys
I want to have Map with duplicate keys, I know there are many Map implementations(eclipse shows me about 50), so I bet there must be one that allows this. I know its easy to write …
2
votes
4answers
184 views
Dictionary class
is it possible to have multiple values for a single key in the java dictionary class??
4
votes
11answers
1k views
Multi-valued hashtable in Java
Is it possible to have multiple values for the same key in a hash table? If not, can you suggest any such class or interface which could be used?
1
vote
3answers
171 views
Objective-C implementation of a histogram or bag datastructure
Instead of implementing my own I was wondering if anyone knows of a histogram or bag datastructure implementation in Objective-C that I can use.
Essentially a histogram is a hashm …
1
vote
1answer
126 views
Concurrent multimap put and remove
This is a composed concurrent list multimap implementation. A lower-level implementation would be better, but more complex.
Ignoring the O(n) removal in the sublist, is this the c …
2
votes
1answer
268 views
Create Weak Multimap with Google Collections
Is there an equivalent to the nice MapMaker for MultiMaps?
currently i create the cache like this:
public static Map<Session,List<Person>> personCache = new MapMa …
0
votes
3answers
630 views
How to convert c++ std::list element to multimap iterator
Hello all,
I have
std::list<multimap<std::string,std::string>::iterator> >
Now i have new element:
multimap<std::string,std::string>::value_type aNewMmap …
1
vote
4answers
947 views
Java priority queue
Java's priority queue is a data structure with O(log n) complexity for put (insertion) and O(log n) for poll (retrieval and removal of the min element).
C++ STL's multimap has the …
1
vote
2answers
419 views
How to”adapt” functors to use with map/multimap?
I'm having difficulty in using std::for_each and other algorithms with a multimap, and want to know if someone could help me developing a functor that could pass the appropriate pa …
4
votes
3answers
285 views
Multimap in Hibernate
I need a collection that stores entries as key-value pairs (so I can look up values by a key), but I need one that allows multiple values to share the same key using hibernate
1
vote
2answers
200 views
I need a slightly different multimap
Hi all,
I'm looking for a C++ container class, that's a lot like a multimap, but slightly different. The container would store pairs of strings. But when I retrieve items from t …
