Search Results

0
votes

Finding the Nth largest value in a group of numbers as they are generated.

If I understood well, the upper bound memory usage for your program is O(N) (possibly N+1). You can maintain a list of the generated values that are greater than the current X (the Nth largest valu …