Tagged Questions
Map, sometimes also called "dictionary" or "associative array" (in computer science) is a data structure which stores the relations between keys and values and allows the retrieval of the value using the provided key. Maps are often implemented using hashtables. In functional programming a method that operates on each member of a list and returns a new list with the results.
97
votes
14answers
78k views
How to Initialise a static Map in Java
How would you initialise a static Map in Java?
Method one: Static initializer
Method two: instance initialiser (anonymous subclass)
or
some other method?
What are the pros and cons of each?
Here ...
92
votes
9answers
55k views
How do I iterate over each Entry in a Collection 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 ...
74
votes
10answers
14k views
OpenLayers vs Google Maps?
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,
Why would I use OpenLayers ...
45
votes
5answers
11k views
Python List Comprehension Vs. Map
Is there a reason to prefer using map() over list comprehension or vice versa? Is one generally more effecient or generally considered more pythonic than the other?
41
votes
11answers
7k views
Looking for a good world map generation algorithm
I'm working on a Civilization-like game and I'm looking for a good algorithm for generating Earth-like world maps. I've experimented with a few alternatives, but haven't hit on a real winner yet.
One ...
38
votes
5answers
42k views
How to convert a Map to List in Java?
What is the best way to convert a Map<key,value> to a List<value>? Just iterate over all values and insert them in a list or am I overlooking something?
30
votes
13answers
1k views
Is “map” a loop?
While answering this question, I came to realize that I was not sure whether Perl's map can be considered a loop or not?
On one hand, it quacks/walks like a loop (does O(n) work, can be easily ...
24
votes
4answers
7k 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 ...
23
votes
4answers
2k views
Why is std::map implemented as red-black tree?
WHY is std::map implemented as a red-black tree?
There are several balanced BST out there, what were design trade-offs in choosing red-black tree?
Note, I'm not asking what are RB-trees or ...
22
votes
4answers
43k views
Convert Collection to List
I am using TreeBidiMap from the apache collections library. I want to sort this on the values which are doubles.
My method is to retrieve a Collection view of the values using Collection coll = ...
21
votes
5answers
902 views
How can I generate an “unlimited” world?
I would like to create a game with an endless (in reality an extremely large) world in which the player can move about. Whether or not I will ever get around to implement the game is one matter, but I ...
20
votes
24answers
14k 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 ...
20
votes
6answers
7k views
Developing Geographic Thematic Maps with R
There are clearly a number of packages in R for all sorts of spatial analysis. That can by seen in the CRAN Task View: Analysis of Spatial Data. These packages are numerous and diverse, but all I want ...
20
votes
4answers
10k 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 ...
20
votes
11answers
33k views
Which data structure would you use: TreeMap or HashMap? (Java)
Description | A Java program to read a text file and print each of the unique words in alphabetical order together with the number of times the word occurs in the text.
The program should declare a ...
19
votes
5answers
6k views
Is there any advantage of using map over unordered_map in case of trivial keys?
A recent talk about unordered_map in C++ made me realize, that I should use unordered_map for most cases where I used map before, because of the efficiency of lookup ( amortized O(1) vs. O(log n) ). ...
18
votes
7answers
5k 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?
17
votes
4answers
786 views
Best way to merge two maps and sum the values of same key?
val map1 = Map(1 -> 9 , 2 -> 20)
val map2 = Map(1 -> 100, 3 -> 300)
I want to merge them, and sum the values of same keys. So the result will be:
Map(2->20, 1->109, 3->300)
...
17
votes
4answers
11k views
map vs. hash_map in C++
I have a question with hash_map and map in C++. I understand that map is in STL but hash_map is not a standard. What's the difference of them two?
Any insights are strongly welcomed.
Thanks!
17
votes
16answers
4k 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?
16
votes
2answers
2k views
Ruby - Difference between map and collect?
I have Googled this and got patchy / contradictory opinions - is there actually any difference between doing a map and doing a collect on an array in Ruby/Rails?
The docs don't seem to suggest any, ...
16
votes
1answer
3k views
Shallow copy of a Map in Java
As I understand it, there are a couple of ways (maybe others as well) to create a shallow copy of a Map in Java:
Map<String, Object> data = new HashMap<String, Object>();
Map<String, ...
16
votes
2answers
616 views
Elegant way to reverse a map in Scala
Greetings,
Learning Scala currently (2.7.7) and needed to reverse a Map to do some reverse value->key lookups. I was looking for a simple way to do this, but came up with only:
(Map() ++ ...
15
votes
5answers
2k views
Java time-based map with expiring keys
Do any of you know of a Java Map or similar standard data store that automatically purges entries after a given timeout? Preferably in an open source library that is accessible via maven?
I know of ...
15
votes
3answers
8k views
functional programming scala map and fold left
Hi can someone tell me some good tutorials on fold left and map
15
votes
2answers
3k views
Linq Map! or Collect!
What is the Linq equivalent to the map! or collect! method in Ruby?
a = [ "a", "b", "c", "d" ]
a.collect! {|x| x + "!" }
a #=> [ "a!", "b!", "c!", "d!" ]
I could do this by ...
15
votes
8answers
33k views
How to Use python map and other functional tools
This is quite n00bish, but I'm trying to learn/understand functional programming in python. The following code:
foos = [1.0,2.0,3.0,4.0,5.0]
bars = [1,2,3]
def maptest(foo, bar):
print foo, bar
...
15
votes
10answers
15k 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 ...
14
votes
7answers
798 views
Java: What is a good data structure for storing a coordinate map for an infinite game world?
I am used to coding in PHP but I am not really proficient with Java and this has been a problem for some time now. I expect it to be a fairly easy solution, however I cannot find any good example code ...
14
votes
4answers
12k views
Convert JSON to HashMap using Gson in Java
I'm requesting data from a server which returns data in the JSON format. Casting a HashMap into JSON when making the request wasn't hard at all but the other way seems to be a little tricky. The JSON ...
14
votes
7answers
6k views
How does one instantiate an array of maps in Java?
I can declare an array of maps using generics to specify the map type:
private Map<String, Integer>[] myMaps;
However, I can't figure out how to instantiate it properly:
myMaps = new ...
14
votes
7answers
5k views
how can I get a std::set of keys to a std::map
I was writing an algorithm this morning and I ran into a curious situation. I have two std::maps. I want to perform a set intersection on the sets of the keys of each (to find which keys are common ...
13
votes
2answers
285 views
std::lower_bound slower for std::vector than std::map::find
I wrote a class to act as a wrapper around a sequential container (std::vector/std::queue/std::list) to have the interface of a std::map, for performance when using small numbers of small objects. ...
13
votes
7answers
5k views
remove_if equivalent for std::map
I was trying to erase a range of elements from map based on particular condition. How do I do it using STL algorithms?
Initially I thought of using remove_if but it is not possible as remove_if does ...
13
votes
5answers
2k 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 ...
12
votes
7answers
484 views
C++ map iteration with deletion
I couldn't find an instance of how to do this, so I was hoping someone could help me out. I have a map defined in a class as follows:
std::map<std::string, TranslationFinished> ...
12
votes
3answers
651 views
Why doesn't Option have a fold method?
I wonder why scala.Option doesn't have a method fold like this defined:
fold(ifSome: A => B , ifNone: => B)
equivalent to
map(ifSome).getOrElse(ifNone)
Is there no better than using map + ...
12
votes
6answers
8k 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
...
11
votes
4answers
216 views
Simple idiom to break an n-long list into k-long chunks, when n % k > 0?
In Python, it is easy to break an n-long list into k-size chunks if n is a multiple of k (IOW, n % k == 0). Here's my favorite approach (straight from the docs):
>>> k = 3
>>> n = ...
11
votes
4answers
377 views
Python: Something like `map` that works on threads
I was sure there was something like this in the standard library, but it seems I was wrong.
I have a bunch of urls that I want to urlopen in parallel. I want something like the builtin map function, ...
11
votes
1answer
1k views
Use 'map' and stuff on Scala Tuples?
'map' preserves the number of elements, so using it on a Tuple seems sensible.
My attempts so far:
scala> (3,4).map(_*2)
error: value map is not a member of (Int, Int)
(3,4).map(_*2)
...
11
votes
8answers
19k views
Java - HashMap vs Map objects
What is the difference between the following maps I create (in another question, people answered using them seemingly interchangeably and I'm wondering if/how they are different):
HashMap<String, ...
11
votes
4answers
1k views
Does OCaml have general map()/reduce() functions?
In Python map() works on any data that follows the sequence protocol. It does The Right Thing^TM whether I feed it a string or a list or even a tuple.
Can't I have my cake in OCaml too? Do I really ...
11
votes
16answers
3k 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 ...
10
votes
4answers
152 views
Is NaN a valid key value for associative containers?
Consider the ordered and unordered associative containers in C++ keyed on double.
Is NaN a valid key type?
With ordered containers, I should say "no", because it does not respect the strict weak ...
10
votes
5answers
232 views
Is the order of iterating through std::map known (and guaranteed by the standard)?
What I mean is - we know that the std::map's elements are sorted according to the keys. So, let's say the keys are integers. If I iterate from std::map::begin() to std::map::end() using a for, does ...
10
votes
1answer
450 views
How do I easily convert from one collection type to another during a filter, map, flatMap in Scala?
Suppose I have a List[Int], and I want to call toString on each element, and get back the result as a Vector[String].
What are the various ways to do this in Scala? Is there a solution with a minimal ...
10
votes
6answers
387 views
JavaScript `new Array(n)` and `Array.prototype.map` weirdness
I've observed this in Firefox-3.5.7/Firebug-1.5.3 and Firefox-3.6.16/Firebug-1.6.2
When I fire up Firebug:
>>> x = new Array(3)
[undefined, undefined, undefined]
>>> y ...
10
votes
1answer
435 views
Weird MapView problem; PixelConverter Error
I have an application based on the MapActivity. The application drops
ItemizedOverlay items on the map as you start to move about. It has
been running with no problems until I dropped it into a ...
10
votes
1answer
2k views
Highlight polygon and tint rest of map using Google Maps
I'd like to display a highlighted polygon using Google Maps. The idea is that the polygon in question would be displayed normally and the rest of the map should be darkened a little bit.
Here's an ...