How can retrieve the two highest item from a list containing 100,000 integers without having to sort the entire list first?
Iterating through the entire list is the only way to do it without sorting.