answersLogoWhite

0

What is worst fit algorithm?

Updated: 11/10/2022
User Avatar

Abaso001

Lvl 1
8y ago

Best Answer

The worst fit algorithm is a means by which an operating system can choose which space in memory to store information (this algorithm can also be used for allocating hard disk space). The algorithm searches for free-space in memory in which it can store the desired information. The algorithm selects the largest possible free space that the information can be stored on (i.e., that is bigger than the information needing to be stored) and stores it there. This is directly opposed to the best fit algorithm which searches the memory in much the same way as before, only instead chooses the open memory space which is the smallest available which the information can be stored in (i.e., that is bigger than the information needing to be stored).

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is worst fit algorithm?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the advantages of worst-fit algorithm?

It can be used in computer programming. It helps you to see which options are not viable and would not help out the situation.


What is worst -fit?

The worst fit algorithm is a means by which an operating system can choose which space in memory to store information (this algorithm can also be used for allocating hard disk space). The algorithm searches for free-space in memory in which it can store the desired information. The algorithm selects the largest possible free space that the information can be stored on (i.e., that is bigger than the information needing to be stored) and stores it there. This is directly opposed to the best fit algorithm which searches the memory in much the same way as before, only instead chooses the open memory space which is the smallest available which the information can be stored in (i.e., that is bigger than the information needing to be stored).


Define worst-case of an algorithm?

Asymptotic


Explain first fit algorithm?

A "first fit" algorithm is any algorithm which doesn't care about how "good" a solution is, it just returns the first one that works.


What is best fit algorithm?

ytijkj


What is the big-O worst-case complexity of this algorithm?

Can't say without some detail about the algorithm in question.


What is the worst case analysis for matrix multiplication algorithm?

n^3


What has the author Walter Goessens written?

Walter Goessens has written: 'An analysis of the first-fit binpacking-algorithm' 'An analysis of the next-fit binpacking-algorithm' 'An exact calculation of the expected waste for a bin-packing algorithm using items that are exponentially distributed'


What is the difference between best worst and average case complexity of an algorithm?

These are terms given to the various scenarios which can be encountered by an algorithm. The best case scenario for an algorithm is the arrangement of data for which this algorithm performs best. Take a binary search for example. The best case scenario for this search is that the target value is at the very center of the data you're searching. So the best case time complexity for this would be O(1). The worst case scenario, on the other hand, describes the absolute worst set of input for a given algorithm. Let's look at a quicksort, which can perform terribly if you always choose the smallest or largest element of a sublist for the pivot value. This will cause quicksort to degenerate to O(n2). Discounting the best and worst cases, we usually want to look at the average performance of an algorithm. These are the cases for which the algorithm performs "normally."


Worst case of Quicksort algorithm?

The worst case occurs when data is already sorted where the complexity is O(n^2) instead of the well known O(n log n)


What is the worst case running time of algorithm to delete each element from the linked list?

Linear time. O(n).


What is the worst case and best case of bubble sort?

There is no worst case for merge sort. Each sort takes the same amount of steps, so the worst case is equal to the average case and best case. In each case it has a complexity of O( N * log(N) ).