iguit0 / BankersAlgorithm

:vertical_traffic_light: Dijkstra's famous algorithm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Banker's Algorithm :shipit:💻

The Banker's algorithm is a resource allocation and deadlock avoidance algorithm developed by Edsger W. Dijkstra that tests for safety by simulating the allocation of predetermined maximum possible amounts of all resources, and then makes an "s-state" safe state check to test for possible deadlock conditions for all other pending activities, before deciding whether allocation should be allowed to continue.

Okay, but how this thing works? 😐❓

When a new process enters a system, it must declare the maximum number of instances of each resource type that it may ever claim; clearly, that number may not exceed the total number of resources in the system. Also, when a process gets all its requested resources it must return them in a finite amount of time.

About

:vertical_traffic_light: Dijkstra's famous algorithm

License:MIT License


Languages

Language:C 48.6%Language:Java 34.3%Language:Python 17.1%