雜湊表的資料結構,也稱為字典或是 symbol table。
We have all used a dictionary. Dictionay-alike data are found in many apps and database mgmt apps. In computer science, we generally use the Symbol Table rather than Dictionary, we define symbol table as a set of name-attributes pairs. The characteristics of name & attrs vary according to the apps.
-
check whether the name is in table or not
-
retrieve attribute of the name using getter
-
modify the attribute of the name using setter
-
insert a pair of new data (name: attributes)
-
delete a pair of existing data (name: attributes)