Tagged Questions
The multimap tag has no wiki summary.
21
votes
5answers
2k views
High-performance Concurrent MultiMap Java/Scala
I am looking for a high-performance, concurrent, MultiMap. I have searched everywhere but I simply cannot find a solution that uses the same approach as ConcurrentHashMap (Only locking a segment of ...
16
votes
5answers
7k views
multimap in .NET
I need an equivalent to c++'s std::multimap<K, V, Comp, Alloc> in C-sharp. Does it exist in the standard library?
9
votes
3answers
164 views
When does using a std::multimap make sense
I am currently experimenting on some usage of stl-datastructures. However I am still not sure when to use which one and when to use a certain combination. Currently I am trying to figure out, when ...
8
votes
1answer
401 views
What is multimap::emplace() and move()?
I was viewing the MSDN doc about multimap and find that it has a member function multimap::emplace(). Below is the example of that member function.
int main( ) {
using namespace std;
...
7
votes
2answers
292 views
How is a C++ multimap implemented?
For example a C++ vector is implemented using a dynamic array where each element uses consecutive memory spaces.
I know that C++ multimap is a one to many relationship but what is the internal ...
7
votes
2answers
734 views
Scala Immutable MultiMap
In Scala I would like to be able to write
val petMap = ImmutableMultiMap(Alice->Cat, Bob->Dog, Alice->Hamster)
The underlying Map[Owner,Set[Pet]] should have both Map and Set immutable. ...
7
votes
12answers
11k 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?
6
votes
6answers
690 views
Why does multimap allow duplicate key-value pairs?
EDIT: Please note, I'm NOT asking why multimap can't contain duplicate keys.
What's the rationale behind multimap allowing duplicate key-value pairs? (not keys)
#include <map>
#include ...
6
votes
8answers
8k 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 your own Map that ...
6
votes
3answers
1k 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
5
votes
3answers
128 views
std::multimap getting two ranges
I'm using a C++ std::multimap and I have to loop over two different keys. Is there an efficient way to do this other than creating two ranges and looping over those ranges seperately?
This is the ...
5
votes
3answers
313 views
Why does it.next() throw java.util.ConcurrentModificationException?
final Multimap<Term, BooleanClause> terms = getTerms(bq);
for (Term t : terms.keySet()) {
Collection<BooleanClause> C = new HashSet(terms.get(t));
if ...
5
votes
2answers
166 views
How to build a multimap from a list of tuples in Scala?
Suppose I have a list of tuples List[(A, B)]. What is the best way to convert it to a multimap, which maps A to Set[B]? Can I build an immutable multimap ?
5
votes
4answers
310 views
implementing remove on a ConcurrentMultimap without races
I've been looking at the problem of writing a concurrent Multimap, and I have an implementation backed by the Google Guava AbstractSetMultimap and a MapMaker computing map that creates on demand the ...
5
votes
3answers
1k views
Many-value map in Scala
In Scala 2.8, I have an immutable map with multiple values for each key:
Map[T,Iterable[U]]
Is there a superior representation? Secondly, how would you generate such a map from
Iterable[(T,U)]
? ...
5
votes
1answer
895 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 ...
5
votes
6answers
5k views
stl::multimap - how do i get groups of data?
Multimap essentially has groups of data sorted by the key. I want a method by which I could access these individual groups and get their aggregate values.
For example, in a std::multimap< string, ...
4
votes
4answers
205 views
multimap vs map with set
I'm wondering which is more efficient.
std::map< String, std::set<int> >
or
std::multimap< String, int >
EDIT:
I do not plan on doing anything out of the ordinary with these ...
4
votes
2answers
238 views
guava: Best way to iterate over the key->collection entries of a Multimap?
I'm looking for the corresponding way, for Multimap, to iterate over entries of a Map, namely:
Map<K,V> map = ...;
for (Map.Entry<K,V> entry : map.entrySet())
{
K k = entry.getKey();
...
4
votes
4answers
374 views
Turn a multimap into set of sets
I have a multimap and I would like to get a set of sets - which would group together all the items of type A in the multimap that share the same key. Is there a built-in way to do this in STL?
4
votes
2answers
500 views
How to create a Multimap<K,V> from a Map<K, Collection<V>>?
I didn't find such a multimap construction... When i want to do this, I iterate over the map, and populate the multimap. Is there an other way ??
final Map<String, Collection<String>> map ...
4
votes
3answers
2k views
Google Maps API vs Multimap/Bing Maps API
I want to know if anyone who has experience of using both the Google Maps API and the Multimap API can give a good reason as to why one is better than the other - or maybe a list of pros and cons?
I ...
3
votes
2answers
49 views
Returning an iterator to a time in a multi-map that is closest to a specified time
Can someone suggest an elegant way to solve the following problem please?
I have a multi-map keyed by time, and i wish to return the item that occured closest to a specified time T. In addition, the ...
3
votes
6answers
105 views
C++ multimap iterator invalidation
I'm trying to figure out how std::multimap iterators work, therefore I've created a simple example that shows the substance of my problem. If uncomment case 1, I expect iterator to point to the first ...
3
votes
1answer
91 views
Haskell — what to use for a labelled set partition?
Beginner question -- what do you usually use as a multimap? I want a function that takes a labelling function and partitions elements by each label. For example,
f x | x `mod` 2 == 0 = EVEN
| ...
3
votes
1answer
353 views
Need to speed up C++ code involving Boost multi-index and lookups to unordered_multimap
I'm looking for strategies to speed up an agent-based model that's based on objects of class Host, pointers to which are stored in a Boost multi-index container. I've used Shark to determine that the ...
3
votes
1answer
218 views
How to remove a specific pair from a C++ multimap?
#include <map>
...
multimap<char,int> first;
first.insert(pair<char,int>('a',10));
first.insert(pair<char,int>('b',15));
first.insert(pair<char,int>('b',20));
...
3
votes
3answers
839 views
Priority Queue using MultiMap - Java
I have to implement Priority Queue using MultiMap. I use MultiMap from Google Collections.
The following code creates a MultiMap and adds few elements into it.
Multimap<Integer, String> ...
3
votes
6answers
877 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 I want to easily be ...
2
votes
4answers
79 views
Overloaded assignment operator causes warning about recursion
I need to implement the overloaded the assignment operator in a class so the vector.erase function will work properly as proposed in the answers to "vector::erase with pointer member". I have ...
2
votes
4answers
96 views
What's the different between std::multimap<key, value> and std::map<key, std::set<value> >
I found that they have one key and multiple values which is unique.
2
votes
1answer
111 views
Guava: construct a Multimap by inverting a Map
why does Guava doesn't have the following factory call to create a MultiMap from a normal Map?
public static <K,V> MultiMap<K,V> invertMap(Map<V,K> map);
I have program-names ...
2
votes
2answers
55 views
Skip same multimap values when iterating
Is there any good way to achieve the desired output below without having to remove the same values or creating another list/vector etc? I am trying to map words found in different documents to their ...
2
votes
1answer
220 views
Scala: ResultSet translation into a different kinds of multimaps
I am going to create wrapper over JDBC ResultSet in Scala.
This wrapper is intended to be a function ResultSet => ParticularType.
The problem is I can't find a common solution for making MultiMaps.
...
2
votes
5answers
592 views
Having a Multimap sorted on keys only in Java
I would like to have a c.g.c.c.Multimap that is sorted based on keys only. The values shouldn't be sorted. I've tried to build something with guava's TreeMultimap, but I can't use it because the value ...
2
votes
2answers
74 views
Is there a more formal term or name for a dictionary of lists?
For documentation purposes, I'm looking for a canonical or standard name for this simple data structure. It seems like there should be one, but Google and my memory are failing me.
Here's an example ...
2
votes
1answer
476 views
2
votes
4answers
386 views
is there a case insensitive multimap in google collections
I need a multi map which keys are case insensitive. is there such implementation in google collections?
2
votes
4answers
589 views
What's the advantage of multimap over map of vectors?
I don't understand why multimap exists if we can create map of vectors or map of sets.
For me only differences are:
using equal_range in multimap for getting elements of a key and in map of vectors ...
2
votes
2answers
180 views
iterator for map
hello i am trying to make a map containing objects as the following : class Employee >>dervied from Employee : are the following classes : Worker , Manager and ViceManage.
in my map i want to have the ...
2
votes
2answers
374 views
using boost multi_index_container to preserve insertion order
I initially started out using a std::multimap to store many values with the same key, but then I discovered that it doesn't preserve the insertion order among values with the same key. This answer ...
2
votes
2answers
163 views
C++ defining two multimaps causes program to crash
This is utterly mystifying me. I have, in my class declaration, two lines:
std::multimap<int, int> commands;
std::multimap<std::string, std::string> config;
The code compiles without ...
2
votes
1answer
356 views
Multimap erase doesn't work
following code doesn't work with input:
2
7
add Elly 0888424242
add Elly 0883666666
queryname Elly
querynum 0883266642
querynum 0888424242
delnum 0883666666
queryname Elly
3
add Kriss 42
add Elly 42
...
2
votes
2answers
593 views
Multimap with HashMultiset for values
I'm trying to have a (hash-based) Multimap with a (hash-based) Multiset of values for each key. See the example:
Multimap<Object, Object> mmap = Multimaps.newMultimap(
Maps.<Object, ...
2
votes
2answers
609 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 counting them one by ...
2
votes
4answers
571 views
Dictionary class
is it possible to have multiple values for a single key in the java dictionary class??
2
votes
3answers
796 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 hashmap of lists where ...
2
votes
4answers
2k 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 same functionality ...
1
vote
1answer
16 views
Large MultiMap+Reduce or Denormalize Count fields
Just wondering your opinion on how I should model my documents for this scenario.
At the moment I have what seems a complex MultiMap index which is pulling in counters / stats from several other ...
1
vote
3answers
27 views
Android storing arraylist data into multimap using same key
Hi friends i got stucked into these problem at the last stage of my program.Here is some description about my project:i am calling a web service with the help of Ksoap and getting the JSON response ...