8
votes
23answers
442 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: …
0
votes
1answer
20 views
How to decide the current point reach on google map?
How to decide the current point reach on google map?
Hi to All,
I have a list of points (pickup points) of a route that I want to show in my google map with polyline.
Now i have …
1
vote
3answers
59 views
advantage of creating a temporary buffer when iterating over and modifying a collection in java
I am iterating over, and modifying a map (which is created from an existing group of enum objects) like the following:
public class Dispenser {
private Map<Ingredient, Integ …
5
votes
4answers
140 views
Need help understanding using c++ map as an asscoiative array
I was going through Josuttis's "Using Map's as associative arrays" and came across Using a std::map as an associative array in this forum. Now I have more questions on the construc …
1
vote
1answer
47 views
Hibernate map collection with constant key
Hi,
I'm trying to map a collection (of type map) using a foreign key and a fixed value as the key/mapping arguments.
I have several tables of product types and a language table w …
0
votes
0answers
13 views
How can we add building names and/or landmarks to Google Maps?
How can we add building names and/or landmarks to Google Maps? & to get new customize url to use it with adding our predefine landmarks.
0
votes
3answers
88 views
Getting Union, Intersection, or Difference of Sets in C++
I have a couple questions about how to use C++ sets (std::set)
Is there a way to get the union, intersection, or difference of two C++ sets? (It's pretty easy to write my own fun …
1
vote
2answers
65 views
referencing java objects on a sorted map by index?
I have a sorted map and want to reference its ordered objects by their index position. Is this possible? How would I convert a sorted map to an array list while maintaining the ord …
0
votes
3answers
59 views
Consume Google Map API from VB .NET windows APP
Hi,
1. I have a VB .NET windows App
I have two locations:
StartPoint = "Minneapolis MN US"
EndPoint = "Dallas TX US"
I want to call Google Map API's GDirections.load(xxx) and GD …
1
vote
3answers
109 views
Is there ‘multimap’ implementation in python?
hi
i am a newbie to Python
I need to use multi-map to store my data, i.e.,
a = multidict()
a[1] = 'a'
a[1] = 'b'
a[2] = 'c'
print(a[1]) # prints: ['a', 'b']
print(a[2]) # prin …
0
votes
1answer
40 views
How to change Gmap markers color?
Hi! I've a custom google map with different points:
Markers[0] = new Array(new GMarker(new GLatLng(45.0, 9.0)), "Location1", "<strong>Address Line</strong><br/>S …
0
votes
2answers
41 views
Why is this variable appearing as undefined?
I have this code:
FOR %%d IN (c d e f g h i j k l m n o p q r s t u v w x y z) do (
IF NOT EXIST %%d:\ (
echo Free drive %%d
set D=%%d:
)
)
echo d=%D%
echo …
0
votes
1answer
37 views
How does this work in computing the depth map?
From this site: http://www.catalinzima.com/?page%5Fid=14
I've always been confused about how the depth map is calculated.
The vertex shader function calculates position as follo …
5
votes
4answers
170 views
Java key - key map
Hi,
I need a kind of map which is accessible in two directions, so with a key-key structure instead of key-value. Does this exist in Java? If not, what is the best way to create i …
0
votes
0answers
28 views
NHibernate IDictionary mapping with link table
I am a newbie to NHibernate and trying to create a XML mapping for this scenario:
public class Catalog
{
public virtual Guid ID { get; set; }
public virtual string Name { …
