You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we do a lot of book keeping to perform round robin on the leased items. This is O(n) in the number of items.
Ideally we should just use Priority queue so that the least leased item is always on top. This will be O(log n)
The text was updated successfully, but these errors were encountered:
Currently we do a lot of book keeping to perform round robin on the leased items. This is O(n) in the number of items.
Ideally we should just use Priority queue so that the least leased item is always on top. This will be O(log n)
The text was updated successfully, but these errors were encountered: