Question: What is the worst-case time complexity for deleting the minimum element from a binary min-heap?
Options:
Correct Answer: O(log n)
Solution:
Deleting the minimum element from a binary min-heap requires re-structuring the heap, which takes O(log n) time.