From charlesreid1

(Created page with "Dictionaries are data structures that store data in such a way that it can be looked up by value, rather than by index/position/reference.")
 
No edit summary
Line 1: Line 1:
=Dictionary data type - definition=
Dictionaries are data structures that store data in such a way that it can be looked up by value, rather than by index/position/reference.
Dictionaries are data structures that store data in such a way that it can be looked up by value, rather than by index/position/reference.
These types of data sets naturally lend themselves to a structure that partitions data based on its sort value, as in a binary tree. This allows operations to happen faster, because the lookup key itself guides the process of finding the corresponding data in the data structure.
=Flags=
{{DataStructuresFlag}}

Revision as of 06:35, 3 June 2017

Dictionary data type - definition

Dictionaries are data structures that store data in such a way that it can be looked up by value, rather than by index/position/reference.

These types of data sets naturally lend themselves to a structure that partitions data based on its sort value, as in a binary tree. This allows operations to happen faster, because the lookup key itself guides the process of finding the corresponding data in the data structure.


Flags