Statement
Solution
Naive approach
The naive solution is to first sort the data and then find the largest element. Insertion sort is an algorithm that can be used to sort the data as it appears. However, it also requires shifting the elements, greater than the inserted number, one place forward.
The overall time complexity of the algorithm becomes , where is the number of elements in the data stream. The time complexity of each insertion is and finding the largest element would take time, assuming we are storing the data in an array. The space complexity is .
Optimized approach using Top K Elements
To efficiently find the largest element in a stream of numbers, we use a min-heap that holds the top largest elements. This way, we don’t have to sort the entire list each time a new number is added. The largest element will change as new members come in, so we need a class to handle these dynamic updates.
With its ability to hold k elements, the min-heap ensures that the largest number is always at the root. We do this by adding new elements to the heap and removing the smallest one if the heap grows beyond k elements. This approach allows us quick access to the largest number, making the min-heap the most efficient tool for the job.
The slides below illustrate the core ideas of our algorithm: