Tagged Questions
1
vote
5answers
582 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]); ...