Tagged Questions
6
votes
6answers
1k 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?
1
vote
5answers
530 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 = rank([3,6,4,2,2]); ...
1
vote
3answers
262 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 only constant ...