17
votes
8answers
3k views
Iterate Over Map
If I have an object implementing the Map interface in Java and I wish to iterate over every pair contained within it, what is the most efficient way of going through the map? Will the ordering of …
12
votes
16answers
1k views
What’s the point of Perl’s map?
Not really getting the point of the map function. Can anyone explain with examples its use?
Are there any performance benefits to using this instead of a loop or is it just sugar?
9
votes
23answers
559 views
Java HashMap performance optimization / alternative
I want to create a large HashMap but the put() performance is not good enough. Any ideas?
Other data structure suggestions are welcome but I need the lookup feature of a Java Map:
map.get(key)
In …
9
votes
5answers
842 views
OpenLayers vs Google Maps ?
Hi,
I have used Google Maps a couple of times, but what wondering about OpenLayers...
Before starting any kind of coding, here are a couple of questions that come to my mind, and you might help me …
9
votes
5answers
727 views
Is there a good way to have a Map<String, ?> get and put ignore case?
Is there a good way to have a Map get and put ignore case?
8
votes
3answers
211 views
Does Java have a HashMap with reverse lookup?
I have data that is organized in kind of a "key-key" format, rather than "key-value". It's like a HashMap, but I will need O(1) lookup in both directions. Is there a name for this type of data …
8
votes
4answers
2k views
Inspecting standard container (std::map) contents with gdb
Supposing to have something like this:
#include <map>
int main(){
std::map<int,int> m;
m[1] = 2;
m[2] = 4;
return 0;
}
I would like to be able to inspect the contents of …
8
votes
15answers
1k views
Hashtable/dictionary/map lookup with regular expressions
I'm trying to figure out if there's a reasonably efficient way to perform a lookup in a dictionary (or a hash, or a map, or whatever your favorite language calls it) where the keys are regular …
7
votes
6answers
267 views
C# refugee seeks a bit of Java collections help
I need to store key/value info in some type of collection. In C#, I'd define a dictionary like this:
var entries = new Dictionary<string, int>();
entries.Add("Stop me", 11);
entries.Add("Feed …
7
votes
5answers
520 views
What’s the difference between grep and map in Perl?
In Perl both grep and map take an expression and a list, and evaluate the expression for each element of the list.
What is the difference between the two?
7
votes
7answers
1k views
In STL maps, is it better to use map::insert than []?
A while ago, I had a discussion with a colleague about how to insert values in STL maps. I preferred
map[key] = value;
because it feels natural and is clear to read whereas he preferred
…
7
votes
5answers
676 views
how do you make a heterogeneous boost::map?
I want to have a map that has a homogeneous key type but heterogeneous data types.
I want to be able to do something like (pseudo-code):
boost::map<std::string, magic_goes_here> m;
…
7
votes
10answers
2k views
Hashtable in C++?
I usually use C++ STL map whenever I need to store some data associated with a specific type of value (a key value - e.g. a string or other object). The STL map implementation is based on trees which …
6
votes
7answers
212 views
Very simple map implemention in C (for caching purpose) ?
I have a program that read urls in a file and does a gethostbyname() on each URL host. This call is quite consuming. I want to cache them.
Is there a very simple map-base code snippet in C out there …
6
votes
5answers
739 views
Do STL maps initialize primitive types on insert?
I have a std::map like this:
map<wstring,int> Scores;
It stores names of players and scores. When someone gets a score I would simply do:
Scores[wstrPlayerName]++;
When there is no element …
