0
votes
3answers
50 views
Should I use jQuery.inArray()?
I'm doing very frequent searches in arrays of objects and have been using jQuery.inArray(). However, I'm having speed and memory issues and one of the most called methods according to my profiler is …
0
votes
3answers
49 views
An Exercise: map or reduce a map in Python without list comprehensions?
When I started writing this question, I didn't think of the easy solution with nested lists, but now anyway want to find one.
Here's an ugly code:
fun0(
fun1(fun2(fun3(arg1))),
…
4
votes
7answers
161 views
traditional for loop vs Iterator in Java
Is there any performance testing results available in comparing traditional for loop vs Iterator while traversing a ArrayList,HashMap and other collections?
Or simply why should I use Iterator over …
0
votes
1answer
15 views
How to add custom map source to route-me?
Hi,
'route-me' is an iPhone map engine and I want to add my own map source to it. I've got all the map images on my server but I dont know how to add the map source? Any one could help?
0
votes
3answers
64 views
Is there any free/open source map engine for iPhone?
Hi
I have a bunch of map images and i wonder if there is any free/open source map engine that I can use for iPhone development. Just like google map api but they are for native development
0
votes
1answer
27 views
Marking the Initial State of this Finite Automaton
I'm working on a finite deterministic automaton based on this.
From this code:
public void markInitialState (int initialStateId) {
State theInitialState = …
2
votes
5answers
144 views
C++ “Scrolling” through items in an stl::map
I've made a method to scroll/wrap around a map of items, so that if the end is reached, the method returns the first item and vice-versa.
Is there more succinct way of doing this?
…
0
votes
2answers
29 views
Mapping mouse events in vim through putty not working…
I'm using Vim 6.3.81 on a x-term through putty. I wanted to map mouse events (like wheel-button click , double click) to specific events using my .vimrc . I've looked at the vim wiki and based on it, …
4
votes
5answers
137 views
What _can_ I use as std::map keys?
Extends.
I have:
struct Coord
{
int row, col ;
bool operator<( const Coord& other ) const
{
return row < other.row && col < other.col ;
}
} ;
I'm trying to create a …
1
vote
4answers
45 views
Message Map in Win32 No-MFC
How could I create similar structure to handle Win32 Messages like it is in MFC?
In MFC;
BEGIN_MESSAGE_MAP(CSkinCtrlTestDlg, CDialog)
//{{AFX_MSG_MAP(CSkinCtrlTestDlg)
…
1
vote
4answers
79 views
How to pass items as args lists in map?
This is a piece of my code. Lambda accepts 3 parameters, and I wanted to pass them as a tuple of positional arguments, but apparently map supplies them as a single argument.
How can I supply those …
1
vote
2answers
48 views
Heatmap (density map) on GWT
I want to creata a heatmap (density map) on images. The examples like the one in http://www.heatmapapi.com/Sample%5FGoogle.aspx are good examples of what I try to do.
Is there a GWT way of achieving …
8
votes
8answers
266 views
C++ map insertion and lookup performance and storage overhead
I would like to store a mapping of an integer key to a float value in-memory.
I have roughly 130 million keys (and, accordingly, 130 million values).
My focus is on lookup performance -- I have to …
1
vote
3answers
124 views
How to reduce the total memory hogging by compacting my Objects in Java?
I have a table with around 20 columns with mostly consisting of varchars and decimals. This table has almost 1.5M rows. But few things are common in them like column1 consists of only 100 distinct …
9
votes
23answers
655 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 …
