Tagged Questions

0
votes
3answers
903 views

finding kth largest element in an array implemented bag

we have a collection of comparable held in a bag and have to find the kth largest element. I copied to a hashSet to remove duplicates then converted the hash set to an array to be sorted and ...