I want to implement at least two different solutions to find N-th largest element with O(N*log(N)) average time complexity in Big-O notation, where N is the number of elements in the list ?
which searching algorithm should i use in my program in java to find to n-th largest element with regards to O(N*log(N)) ?