in Compiler Design retagged by
12,036 views
2 votes
2 votes

Which of the following symbol table implementation is based on the property of locality of reference?


  1.  Self-organizing list
  2.  Hash tree
  3.  Search tree
  4.  Array
in Compiler Design retagged by
12.0k views

1 Answer

5 votes
5 votes
Best answer

Answer. 1- Self Organizing List.

The aim of a self-organizing list is to improve efficiency of linear search by moving more frequently accessed items towards the head of the list. The property of frequently accessing same values, or related storage locations is termed as Locality of Reference.

selected by

Related questions