Please read the new rule regarding the restriction on the use of AI tools. ×

stl set vs min_heap

Revision en1, by dumbguy, 2017-10-17 15:15:17

Suppose i only need to get the minimum element at every instance (there is constant addition and removal of items).
Which would be optimum in terms of time complexity? stl set or min_heap (implemented as priority_queue)
I know min_heap gets the minimum element in O(1). But what about stl set? Is it O(1) or more than O(1).
Thanks

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English dumbguy 2017-10-17 15:15:17 365 Initial revision (published)