A container similar to a map but allowing duplicate keys

learn more… | top users | synonyms

0
votes
1answer
106 views

Java Guava: Remove and put back elements from Multimap while iterating

What I'm trying to achieve is the following: While iterating over both the keys and values of a Multimap<K,V>, I want to remove and put back elements from this list. Any approach I've tried ends ...
0
votes
4answers
45 views

Which collection is suitable for tel number + name pair in Java?

I am trying to add to a collection the following pairs 698xxxxxxx - personA 698xxxxxxx - personB 699xxxxxxx - personA 699xxxxxxx - personB I go through alot of files and try to add ...
0
votes
1answer
87 views

Google Maps API v2 multiple map fragment problems

I have experimented few issue with the new google map api v2 I have a fragment that wraps a mapFragment, this is created at the begging of the app. The in another fragment that is created when the ...
0
votes
2answers
48 views

How to populate a mapped multimap?

I have the following mapped multimap : map<int, multimap<int, pair<string, string>>> modCreAlt; I am trying to insert a line in it : int priority = ... ; string alertInv = ... ; ...
0
votes
1answer
49 views

C++ multimap like container to perform search on a part of a key

I'd like to store data in some kind of key(some bitarray)->values(integers) mapping container. Bitarray can be up to 32bytes large (and probably it could be a constant size). It could be a standard ...
3
votes
1answer
67 views

Any good implementations of a multimap in C?

I'm trying to port some Delphi code to a C library, but the central structure of it is based around a multimap. With no Generics of any kind and no language-level support for dynamic arrays, it would ...
1
vote
2answers
89 views

What is wrong with Map<Object, Collection<Object>>?

I'm trying to build a data structure in Java where I'll be inserting about 200,000 Keys of strings each with "an average" of 1000 Integers Map<String, Arraylist<Integer>>. The map will ...
1
vote
1answer
65 views

deleting elements completely from multimap (C++)

So I have a multimap, where the key is a struct, and the values are another struct. multimap<struct, struct> multimap1; multimap1 contains (format is key: value) 1: Random Value 1 2: Random ...
0
votes
1answer
57 views

how to link data in multiple multimaps together (C++)?

I am storing data in 2 multimaps. The data is a struct the consists of 6 variables: struct data { int var string var string var string symbol int price int var }; Now I need ...
2
votes
2answers
70 views

In C++ `multimap`, how can I get efficiently a collection of the `mapped_type` elements without the duplicates?

I have a std::multimap< int, std::string > like that: 1 A 1 B 1 C 1 B 1 C 1 C and I would like to get a collection of mapped_type elements with no duplicates, like that: 1 A 1 B 1 C My ...
1
vote
1answer
54 views

can I put multimap iteration logic to another function?

I'm particularly interested for backward looping through keys with non repeating: #include <map> #include <iostream> std::multimap<int,int> myMap = { {1,2}, {1,2}, {2,2}, {2,2}, ...
0
votes
0answers
94 views

Issues involving multimap and Guava [closed]

I'm trying to use a library called Guava, specifically a class in it called Multimap. ListMultimap<Node,Node> Adj_Matrix = ArrayListMultimap.create(); My problem is, I am unable to retrieve ...
0
votes
2answers
48 views

how to iterate multimap backwards for unique key?

I know how to do it forward: for(auto it = mmap.begin(), end = mmap.end(); it != end; it = mmap.upper_bound(it->first)) but this doesn't work: for(auto it = mmap.rbegin(), end = mmap.rend(); it ...
1
vote
2answers
109 views

Java Multimap<String,String> with Trove

I have a pretty large google Multimap< String,String > and was looking into ways to reduce the memory usage. In all of the examples I can find people are doing something like: ...
-1
votes
1answer
149 views

Issue with C++ B-tree

I am using the Google's C++ B-tree and I have an issue that someone might be able to answer. First of all I get the following error: In file included from ref_impl/../include/btree_map.h:31:0, ...
0
votes
2answers
50 views

reverse multimap in java

I have a multimap and I iterate it with hasnext(). Set keySet = myMap.keySet(); Iterator keyIterator = keySet.iterator(); while (keyIterator.hasNext() ) { Integer key = (Integer) ...
0
votes
2answers
96 views

Iterate over equal_range result set

I have the following unordered multimap: std::tr1::unordered_multimap<unsigned int, unsigned int > duplicates; And I try to get the values of a key using ...
3
votes
5answers
161 views

Time complexity issues with multimap

I created a program that finds the median of a list of numbers. The list of numbers is dynamic in that numbers can be removed and inserted (duplicate numbers can be entered) and during this time, the ...
1
vote
1answer
147 views

std::multimap and equal_range

I'm having some headaches with the std::multimap container and I wish to know what would be the proper way to achieve my goal. Basically, here is my SSCCE: #include <iostream> #include ...
0
votes
2answers
75 views

Traverse MultiMap to Find Path from a Given Value to a Given Key

Details: I have a multimap implementation that represents the adjacency list for the subset of a graph. I need to find a path through this subset of the graph, which is actually all the possible ...
0
votes
3answers
110 views

how to loop multimap only to get first key-value pairs for every key?

For example if I have such mmap: alice -> 30 bob -> 23 josh -> 20 josh -> 30 andy -> 40 andy -> 40 to get only this pairs: alice -> 30 bob -> 23 josh -> 20 andy -> 40 ...
4
votes
1answer
237 views

Indexing <String, Arraylist<Integer>> using B-Tree

I am about to index 10 million titles with their IDs(for now their line numbers), titles will be stored after tokenising them. The structure of the data has to be something like <String, ...
0
votes
2answers
80 views

change values of multiple elements in std::multimap by key

I am using a std::multimap std::multimap<string,string> map; It contains elements below 1 2 2 3 3 2 1 2 1 0 I want to replace all 1's and 2's by X. I searched in google for a long time, ...
0
votes
1answer
78 views

creating Trigrams using LinkedHashMap java

I am trying to create a trigram model using LinkedHashMap> where Entry is the entry of last inputed bigram (whose structure is: LinkedHashMap Now the problem is, being a map it does not store ...
3
votes
2answers
120 views

Is there a way to get all keys from a value in a multimap?

Say I have a guava Multimap. I have a value, "Foo", that may belong to one or more keys. Is there any way I can figure out which keys contain an entry "Foo"?
0
votes
2answers
130 views

how do i import multimap for java?

This is kind of stupid but how do I install MultiMap? I need a way to store multiple values to keys and my map implementation isn't working
2
votes
2answers
135 views

iterating over a group in multimap how do I know if I am in first or last elements?

I mean this situation: for (auto iter = myMmap.equal_range(find_key).first; iter != myMmap.equal_range(find_key).second; ++iter) { //code } How to derive from the iterator (that is without ...
2
votes
1answer
80 views

Guava Multimap containsEntry issues

Below I have some code that adds two entries to the first multimap and a single entry to the second, then compares the two. Since the keys are the same "Dec" (see output), why does it output false? ...
2
votes
1answer
116 views

Guava Immutable version of LinkedHashMultimap?

I want to create an immutable version of LinkedHashMultiMap. I can roll my own using ImmutableMap and ImmutableList but wondering if there is a way to extend Guava to do it. For example, using ...
1
vote
1answer
173 views

C++ how to insert in multimap?

I want to set up a multimap in C++: multimap<pair<string, string>, vector<double> > mmList; But how to insert data: mmList.insert(pair<string, string>, ...
3
votes
1answer
96 views

Erasing elements in a multimap while iterating

I'm writing a nodal path finding algorithm. I need to run through a multimap and delete elements out of it under certain conditions, but keep iterating through the multimap. Below is my code so far, ...
1
vote
1answer
69 views

Formula solution program

Below is an example of the input I am dealing with: A linkedHashMap with String,Double as parameters NumericMap: { p=20.0, r=5.0, i=2.0} And file input: p = i * i * r What I now need to do is ...
0
votes
4answers
97 views

C++ Multimap manipulation

I have created a multimap as I have repeating keys. But I want do an efficient manipulation so that I can generate a new multimap with subsequent higher keys aligned. This is what I mean: This is ...
0
votes
1answer
44 views

issues interator through map.equal_range

I have issues to iterate map when i use map.equal_range() ..my compiler says there is no no match for 'operator=' in 's_it = Krange.std::pair<> and no match for 'operator != '?? I am confused and ...
0
votes
2answers
54 views

how to redundant item from a multimap

I have some file like following i need to remove the a multimap 3KHJG 76 238 3KHJG 86 238 3GDMB 31 244 3GDMB 31 247 3GDMB 31 251 3KOFA 21 336 3KOFA 36 263 .... i need to get a file ...
0
votes
3answers
149 views

order of elements in std::unordered_multimap

If I have the following piece of code std::unordered_multimap<std::string, std::vector<double>> myMap; std::vector<double> v1, v2, v3; // init v1, v2, v3.... ...
0
votes
3answers
114 views

Faster methods for set intersection

I am facing a problem where for a number of words, I make a call to a HashMultimap (Guava) to retrieve a set of integers. The resulting sets have, say, 10, 200 and 600 items respectively. I need to ...
0
votes
1answer
35 views

How i able to link following data

i have issues to link 3 element (s start, stop) together in the following code. map <int, int> (start, stop) startomap; map <unsigned, <int, int> > (n1, startomap); map ...
0
votes
1answer
84 views

multimap query - order in which we store keys with multiple values [duplicate]

Possible Duplicate: how does the stl’s multimap insert respect orderings? I have a multimap as follows - multimap<string,string> myMultiMap; myMultiMap[sKey] = s1; myMultiMap[sKey] ...
0
votes
2answers
133 views

How to sum up all the elements in a multimap in c++ having the same key

Please help!. How to sum up all the elements in a multimap in c++ having the same key. I have the follwing multimap: multimap <string,int> mymap; and I want to sum all values for a particular ...
0
votes
4answers
52 views

Cant print multimap because of iterator

Hey im trying to print out my multimap values but im getting an error on this for ( multimap< int, Questions, less< int > >::iterator iterator = question_map.begin(); iterator != ...
1
vote
3answers
47 views

Error when trying to make an object

I'm trying to make a Question object. Question being the class but I'm getting an error which is: Error 1 error C2440: 'initializing' : cannot convert from Questions * to Questions I'm trying to ...
-1
votes
1answer
73 views

How to print from a multimap

Hey im trying to print out from a multimap. My multimap is: multimap<int,Questions*> map; What i want to happen is when im calling a question: questions.printQuestion(1); Its prints out the 3 ...
0
votes
1answer
50 views

trying to get multimap to print out questions

The multimap contains multimap<int,Questions*> map;. Im trying to get the map printing out using the following method: Questions* Questions::printQuestion(int level) { multimap<int, ...
0
votes
1answer
66 views

Error in my header and .cpp files [duplicate]

Possible Duplicate: What is an undefined reference/unresolved external symbol error and how do I fix it? Hey i am getting this error in my game. I have a header and .cpp file for ...
1
vote
1answer
123 views

Guava - Can a Multimap be serialized?

I am looking at this API ArrayListMultiMap which implements the Serializable interface. Does that mean I can serialize this object ? Are all Multimap objects serialized ?
0
votes
1answer
144 views

Remove duplicate key in a multimap

I have a multimap: std::multimap < string, string >::iterator iter_map; multimap < string, set<string> > my.map; Typical output and data structure: key - value bird ...
0
votes
3answers
166 views

Cache or MultiMap for day-based cache expiration?

Context: I'm working on an analytics system for an ordering system. There are about 100,000 orders per day and the analytics need to run for the last N (say, 100) days months. The relevant data fits ...
0
votes
1answer
93 views

Using an object variable for multimap equal_range()

I am using an object as a key for a multimap. The object is a custom date class which I created. I was just wondering if it is possible to use a variable found in the object for equal_range()? That ...
1
vote
1answer
123 views

Java how to sort multimap vs?

I use Guava multimap to store data from a textfile. The textfile data format is like: p1 10 p2 30 p3 40 p1 20 p2 50 p3 60 .. .. First column is the key and second is the value. I want to sort the ...

1 2 3 4 5