1
vote
5answers
85 views
Efficiently finding the ranks of elements in an array?
How does one find the rank of each element of an array, averaging in the case of ties, efficiently? For example:
float[] rank(T)(T[] input) {
// Implementation
}
auto foo = …
0
votes
4answers
89 views
What is Java’s lightest weight non-concurrent implementation of Iterable?
I need a class that implements Iterable, and does not need to be safe for concurrent usage. Of the various options, such as LinkedList, HashSet, ArrayList etc, which is the lighte …
1
vote
3answers
162 views
Space efficiency of algorithms…
It seems like none of the algorithm textbooks mentions about space efficiency as much, so I don't really understand when I encounter questions asking for an algorithm that requires …
4
votes
6answers
602 views
Algorithms for Big O Analysis
What all algorithms do you people find having amazing (tough, strange) complexity analysis in terms of both - Resulting O notation and uniqueness in way they are analyzed?
2
votes
8answers
116 views
Best shortcut management tool for development machine?
As a developer I had a slew of shortcuts and applications used daily. Visual Studio 6, 2003, 2005, 2008, SQL Client tools, WinMerge, Notepad++, Synergy, VMware (and lots and lots …
3
votes
2answers
318 views
more efficient way to pickle a string
The pickle module seems to use string escape characters when pickling; this becomes inefficient e.g. on numpy arrays. Consider the following
z = numpy.zeros(1000, numpy.uint8)
len …
2
votes
6answers
149 views
Ideal options for archiving flat files
We receive multiple thousands of flat files per week currently, and I have a system that runs reports on these and exports them to PDF for our people to process and reference.
I …
