I'm reading Operating System Concepts Essentials 8th edition. When the author goes over contiguous memory allocation and worst fit the author states:
"Allocate the largest hole. Again, we must search the entire list unless it is sorted by size. This strategy produces the largest leftover hole, which may be more useful than the smaller leftover hole from a best-fit approach."
So my question, when is leaving the biggest leftover hole a better approach?