由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 如何设计cache
相关主题
请教一道Google面试题Google software engineer和research scientist区别
一道面试题求解请问一下最大增长子序列的O(nLogk)算法
google 一题USCIS 查状态的网站是不是出问题了?
一道关于cache的题问个sql题
LRU cache 问题C++ Q29: extern and const together
类似LRU Cache的题应该怎么练习?拿到Google onsite了。发电面攒rp
T a b l e a u 昂塞特面经现在data mining, pattern recognition好找工作吗?
大熊求职记cs的phd那些业最好找industry的工作?
相关话题的讨论汇总
话题: cache话题: operations话题: element话题: design话题: suggest
进入JobHunting版参与讨论
1 (共1页)
t******e
发帖数: 1293
1
http://www.careercup.com/question?id=180691
Design a efficient cache, supporting retrieval of maximum element in cache
along with other normal cache operations.
Suggest data structures to be used,also tell the complexities for each of
the operations.
k***e
发帖数: 556
2
http://en.wikipedia.org/wiki/Cache_algorithms

【在 t******e 的大作中提到】
: http://www.careercup.com/question?id=180691
: Design a efficient cache, supporting retrieval of maximum element in cache
: along with other normal cache operations.
: Suggest data structures to be used,also tell the complexities for each of
: the operations.

x***y
发帖数: 633
3
main an additional array of indice of elements in Linkedhashmap as a heap to retrieve the max element....

【在 t******e 的大作中提到】
: http://www.careercup.com/question?id=180691
: Design a efficient cache, supporting retrieval of maximum element in cache
: along with other normal cache operations.
: Suggest data structures to be used,also tell the complexities for each of
: the operations.

t******e
发帖数: 1293
4
我也是想到这样,每次swap out一个page的时候,需要能更新当前的最大值

to retrieve the max element....

【在 x***y 的大作中提到】
: main an additional array of indice of elements in Linkedhashmap as a heap to retrieve the max element....
1 (共1页)
进入JobHunting版参与讨论
相关主题
cs的phd那些业最好找industry的工作?LRU cache 问题
有A[i]类似LRU Cache的题应该怎么练习?
Hashtable 问题T a b l e a u 昂塞特面经
LinkedIn Internship Opportunity大熊求职记
请教一道Google面试题Google software engineer和research scientist区别
一道面试题求解请问一下最大增长子序列的O(nLogk)算法
google 一题USCIS 查状态的网站是不是出问题了?
一道关于cache的题问个sql题
相关话题的讨论汇总
话题: cache话题: operations话题: element话题: design话题: suggest