. .

smalltalk

Memoization for Smalltalk

May 15, 2012 13:47:30.000

Travis talks sorting n VisualWorks:

The core default sort algorithm in VisualWorks is hybridization of quicksort and a insertion sort. The implications for this, is that this somewhat expensive toolListDisplayString method may be called repeatedly for some objects. That means redundant CPU cycles. A common solution to this kind of problem is memoization. Memoization basically is a fancy word which means "cache the results of your computation function, so you only evaluate the function once for each unique input and just look up the cached result for subsequent calls."

Technorati Tags:

posted by James Robertson

 Share Tweet This