已收录 268921 条政策
 政策提纲
  • 暂无提纲
Cache Oblivious Data Structures
[摘要] This thesis discusses cache oblivious data structures. These are structures which have good caching characteristics without knowing Z, the size of the cache, or L, the length of a cache line.Since the structures do not require these details for good performance they are portable across caching systems.Another advantage of such structures isthat the caching results hold for every level of cache within a multilevel cache. Two simple data structures are studied; the array used for binary search and the linear list.As well as being cache oblivious, the structures presented in this thesis are space efficient, requiring little additional storage. We begin the discussion with a layout for a search tree within an array.This layout allows Searches to be performed in O(log n) time and in O(log n/log L) (the optimal number) cache misses.An algorithm for building this layout from a sorted array in linear time is given.One use for this layout is a heap-like implementation of the priority queue.This structure allows Inserts, Heapifies and ExtractMaxes in O(log n) time and O(log nlog L) cache misses.A priority queue using this layout can be builtfrom an unsorted array in linear time.Besides the n spaces required to hold the data, this structure uses a constant amount of additional storage. The cache oblivious linear list allows scans of the list taking Theta(n) time and incurring Theta(n/L) (the optimal number) cache misses.The running time of insertions and deletions is not constant, however it is sub-polynomial.This structure requires e*n additional storage, where e is any constant greater than zero.
[发布日期]  [发布机构] University of Waterloo
[效力级别] cache oblivious [学科分类] 
[关键词] Computer Science;cache oblivious;data structures;heap;linear list;caching [时效性] 
   浏览次数:47      统一登录查看全文      激活码登录查看全文