On Linear Search Heuristics
暂无分享,去创建一个
Bentley and McGeoch [l] have advised practicing programmers to use linear search in quite a few cases, mainly when more efficient and sophisticated methods are too clumsy or when space is severely limited. On the other hand, linear search has been an extensively used example when amortized complexity and self-adjusting data structures are studied [1,4]. Self-adjusting data structures have the characteristic feature that, during each access and update operation, a simple restructuring rule is applied in order to improve the efficiency of future operations. In the case of unsorted linear lists, the purpose of restructuring rules is to ensure that frequently accessed items are near to the front of the list. The most common restructuring rules for unsorted linear lists are the following.
[1] Jon Louis Bentley,et al. Amortized analyses of self-organizing sequential search heuristics , 1985, CACM.
[2] Ronald L. Rivest,et al. On self-organizing sequential search heuristics , 1976, CACM.
[3] Robert E. Tarjan,et al. Amortized efficiency of list update and paging rules , 1985, CACM.
[4] James R. Bitner,et al. Heuristics That Dynamically Organize Data Structures , 1979, SIAM J. Comput..