Search in: Word
Vietnamese keyboard: Off
Virtual keyboard: Show
Computing (FOLDOC) dictionary
Best Fit
Jump to user comments
algorithm A resource allocation scheme (usually for
memory). Best Fit tries to determine the best place to put
the new data. The definition of 'best' may differ between
implementations, but one example might be to try and minimise
the wasted space at the end of the block being allocated -
i.e. use the smallest space which is big enough.