Difference between revisions of "Associative array"
Jump to navigation
Jump to search
(Created page with "Associative array can be thought of as a dictionary. Which is a way to use key-value pairs to implement a look up table or a function.") |
|||
Line 1: | Line 1: | ||
Associative array can be thought of as a [[dictionary]]. Which is a way to use [[key-value pair]]s to implement a look up table or a [[function]]. | Associative array can be thought of as a [[dictionary]]. Which is a way to use [[key-value pair]]s to implement a look up table or a [[function]]. | ||
==Implemenation== | |||
In [[Mathematica]], there is a built-in function called [[associative array]]. It serves the same function very similar to a [[dictionary]] or [[hashtable]] in other programming languages. | |||
<noinclude> | |||
=References= | |||
<references/> | |||
==Related Pages== | |||
* [[Logically related::Dictionary]] | |||
* [[Logically related::Morphism]] | |||
* [[Logically related::Functor]] | |||
[[Category:Morphism]] | |||
[[Category:Data Structure]] | |||
</noinclude> |
Latest revision as of 04:07, 5 September 2021
Associative array can be thought of as a dictionary. Which is a way to use key-value pairs to implement a look up table or a function.
Implemenation
In Mathematica, there is a built-in function called associative array. It serves the same function very similar to a dictionary or hashtable in other programming languages.
References
Related Pages