For example: Given a list of objects with a time of last update (t
) and a priority (p
), when making updates to the objects we would like to minimize the worst (n - t) * p
(at n
= time now).
This is unsuitable to a normal priority queue as the results will vary in order from ascending t
to descending p
as n
grows, but such a structure could be very useful if implementable on a database with millions of updateable rows of varying importance or for perfect, fast fair queueing in application logic.
In the absolute deterministic sense, I assert you won't have an efficient solution that is still fair - because your sorting key intrinsically "rots" as the time passes, therefore re-indexing would be needed.
However, if your priorities are a limited (small) set, you can arrange a stochastic way of processing:
Think: at every N high priority jobs, one needs to pick some M (
Some notes:
generating random numbers with a custom distribution - if the language/library doesn't offer support for that (e.g. C++ does with std::discrete_distribution), a poor-man's solution would be to create an array with many equal entries for a priority and then uniform-randomly pick in index from it. E.g. for priorities 0..P, your array could look like
[0,1,1,2,2,2,..., (Q+1 entries for priority Q)...]
. You can apportion different weights by choosing how many "entries in the lottery" a certain priority will be granted (maybe you are not happy with the priority 1 being twice as lucky as priority 0 in the choice above).treating the case of "the randomly picked queue is empty" - so many choices here: assign the wining lottery ticket to the underdog, or to the immediately higher priority non-empty queue, or just repeat the lottery... etc.