memo function - Definition. Was ist memo function
Diclib.com
Wörterbuch ChatGPT
Geben Sie ein Wort oder eine Phrase in einer beliebigen Sprache ein 👆
Sprache:

Übersetzung und Analyse von Wörtern durch künstliche Intelligenz ChatGPT

Auf dieser Seite erhalten Sie eine detaillierte Analyse eines Wortes oder einer Phrase mithilfe der besten heute verfügbaren Technologie der künstlichen Intelligenz:

  • wie das Wort verwendet wird
  • Häufigkeit der Nutzung
  • es wird häufiger in mündlicher oder schriftlicher Rede verwendet
  • Wortübersetzungsoptionen
  • Anwendungsbeispiele (mehrere Phrasen mit Übersetzung)
  • Etymologie

Was (wer) ist memo function - definition

SOFTWARE PROGRAMMING OPTIMIZATION TECHNIQUE
Memoize; Memoisation; Memoizing; Memoise; Memo function; Memo functions; Memoised function; Memoized function; Tabling; Automatic memoization; Memoizing parsers

memo function         
<programming> (Or "memoised function") A function that remembers which arguments it has been called with and the result returned and, if called with the same arguments again, returns the result from its memory rather than recalculating it. Memo functions were invented by Professor Donald Michie of Edinburgh University. The idea was further developed by Robin Popplestone in his Pop2 language long before it was ever worked into LISP. This same principle is found at the hardware level in computer architectures which use a cache to store recently accessed memory locations. A Common Lisp package by Marty Hall <hall@aplcenmp.apl.jhu.edu> ftp://archive.cs.umbc.edu/pub/Memoization. ["'Memo' functions: and machine learning", Donald Michie, Nature, 218, 19-22, 1968]. (2002-07-02)
memoized function         
Tabling         
·noun Board; support.
II. Tabling ·noun A broad hem on the edge of a sail.
III. Tabling ·noun Act of playing at tables. ·see Table, ·noun, 10.
IV. Tabling ·noun A forming into tables; a setting down in order.
V. Tabling ·noun The letting of one timber into another by alternate scores or projections, as in shipbuilding.

Wikipedia

Memoization

In computing, memoization or memoisation is an optimization technique used primarily to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. Memoization has also been used in other contexts (and for purposes other than speed gains), such as in simple mutually recursive descent parsing. Although related to caching, memoization refers to a specific case of this optimization, distinguishing it from forms of caching such as buffering or page replacement. In the context of some logic programming languages, memoization is also known as tabling.