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 6860973
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:28:34+00:00 2026-05-27T02:28:34+00:00

How to design a latest recently used cache? Suppose that you have visited some

  • 0

How to design a latest recently used cache?

Suppose that you have visited some items. You need to design a data structure to hold
these items. Each item is associated with the latest visited time.

Each time when you visit an item, check it in the data structure. If the item has been in the cache, update its visit time. Otherwise, insert it into the cache. The cache size is fixed, if it is full, delete the oldest item.

My solution:

  1. Use a map < item, visitTime >

  2. Initaliztion: Sort the map with f(visitTime) with descending order.
    O(nlg n)

  3. If an item is visited, search it in the map with O(lg n).

  4. If it has been in the map, update the time O(1). Sort the map O(lg
    n).

  5. If not, insert it into map and then sort. O(lg n)

  6. If map size > fixed size, delet the last element O(1).

Another solution:

  1. Use hashtable < item , visitTime >

  2. Sort it O(n lgn).

  3. If an item is visited, search it in the talbe with O(1).

  4. If it has been in the table , update the time O(1). Sort the table
    O(n lg n).

  5. If not, insert it into table and then sort. O(n lg n)

  6. If table size > fixed size, delet the last element O(1).

Are there better solutions ? O(n) ?

  • 1 1 Answer
  • 0 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-27T02:28:35+00:00Added an answer on May 27, 2026 at 2:28 am

    If you use a Doubly Linked List, you’ll get O(1) insertion (after search), O(1) deletion, O(n) search.

    Assuming you insert new items in the front:

    If the cache is not full, just add to the front (O(1)).

    If you need to update an item, find it (O(n)), remove it from the linked list (O(1)), then add to the front (O(1)).

    If you need to delete the oldest to insert a new item, delete the end element (O(1)), and insert to the front (O(1)) [note: you need to search the list first in this case to see if the item is not already in the cache, so O(n)].

    A Linked List can also give you the same time, since the search will leave you at the last element.

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

Sidebar

Related Questions

I have to design an app that reads UDP data off the local net
I have recently started work on a project that has already been running for
I've created a dummy layout for my latest design, but when I resize the
Design requirement: Show a list of items the user can pick from After having
Design an algorithm that, given a list of n elements in an array, finds
My design requires that I kill the get_configuration activity (Activity1) once the second_activity is
Was: Design by contract: predict methods needed, discipline yourself and deal with code that
In my latest ASP.NET MVC 2 application I have been trying to put into
the question is one of design. i'm gathering a big chunk of performance data
So, I'm new to dynamic web design (my sites have been mostly static with

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.