Really really trivial algorithm questionCS people should be able to answer this within 5 seconds.
Is it possible to create a
binary heap structure that has
amortized costs for the
only two supported operations:
INSERT: O (log n)
EXTRACT-MIN: O (1)
Explain your answer.