Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1098173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T00:32:24+00:00 2026-05-17T00:32:24+00:00

Can a map and a min-heap used together give better amortized time that either

  • 0

Can a map and a min-heap used together give better amortized time that either on their own?

Let’s suppose I have a project where I need to track several items. These items have an expiration time and a unique id:

class Item {
  ID uid;
  Time expiration;
};

For this example, both Time and ID are primitive integral data types. I need to be able to quickly access an item by id, and I also need to be able to find the minimum expiration of all items.

Additionally, I will make numerous insertions and deletions.

Using a map, I will get amortized look up times of O(log n). (Yes, I’ll provide a compare function for that.) But finding the min value is O(n).

If I use a min-heap, my look up time by id will be O(n), but finding the min expiration is O(1).

In both cases, insertion are O(log n). For this program, deletions will only occur for the minimum item.

Or, I could use both. A map and a min-heap that track the same objects.

Given this set up, would it be beneficial to use both a min-heap and a map to avoid O(n) complexity?

  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T00:32:25+00:00Added an answer on May 17, 2026 at 12:32 am

    Yes, using double indexes will probably help you (given a sufficient number of items to defeat the constant factors involved). However, be careful – you’ll want to keep track of where your item is in the min-heap so you can delete it from the heap quickly.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a lightweight ORM that can map database columns to instance fields with
Is it expected behavior that two encodings can map to the same decoding? I'm
I have image map that can I move, but this map will be so
I'm trying to create my own custom validator class that I can check the
I am trying to create a normal map in opengl that I can load
Let's say I have a min and a max number. max can be anything,
Project Background: I am writing a map tile overlay class for java that can
How I can map a service running on a specific port number to an
Can Automapper map values from a NameValueCollection onto an object, where target.Foo receives the
How can I map the value of an object collection using fluent mapping? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.