Kinetic priority queue

From HandWiki

A Kinetic Priority Queue is an abstract kinetic data structure. It is a variant of a priority queue designed to maintain the maximum (or minimum) priority element (key-value pair) when the priority of every element is changing as a continuous function of time. Kinetic priority queues have been used as components of several kinetic data structures, as well as to solve some important non-kinetic problems such as the k-set problem and the connected red blue segments intersection problem.

Implementations

The operations supported are:

  • create-queue(q): create an empty kinetic priority queue q
  • find-max(q, t) (or find-min): - return the max (or min for a min-queue) value stored in the queue q at the current virtual time t.
  • insert(X, fX, t): - insert a key X into the kinetic queue at the current virtual timet, whose value changes as a continuous function fX(t) of time t.
  • delete(X, t) - delete a key X at the current virtual time t.

There are several variants of kinetic priority queues, which support the same basic operations but have different performance guarantees. Some of the most common implementations are kinetic heaps which are simple to implement but don't have tight theoretical performance bounds, and their randomized variants - kinetic heaters and kinetic hangers - which are easier to analyze. There is also a heap-like structure based on the dynamic convex hull data structure[1] which achieves better performance for affine motion of the priorities, but doesn't support curved trajectories. The kinetic tournament is another commonly used implementation. It achieves, deterministically, the same performance bounds as the heater or hanger, however it is less local and responsive than the heap-based data-structures.

Time complexities of kinetic priority queue implementations [2]
Trajectory of element priorities Kinetic heap Kinetic hanger, heater & tournament Dynamic convex hull
Lines [math]\displaystyle{ O(n\log^2 n) }[/math] [math]\displaystyle{ O(n\log^2 n) }[/math] [math]\displaystyle{ O(n\log n) }[/math]
Line segments [math]\displaystyle{ O(m\sqrt{n}\log^{\frac{3}{2}}n) }[/math] [math]\displaystyle{ O(m \alpha(n)\log^2 n) }[/math] [math]\displaystyle{ O(m\log n \log \log n) }[/math]
δ-intersecting curves [math]\displaystyle{ O(n^2\log n) }[/math] [math]\displaystyle{ O(\lambda_\delta(n)\log n) }[/math] n/a

Here, [math]\displaystyle{ \alpha(x) }[/math] denotes the inverse Ackermann function.[math]\displaystyle{ \delta }[/math]-intersecting curves refer to curves where each pair has at most [math]\displaystyle{ \delta }[/math] intersections, and [math]\displaystyle{ \lambda_\delta(n) }[/math] refers to a term in the Davenport-Schinzel sequence, which gives the maximum size of the upper envelope of [math]\displaystyle{ n }[/math] [math]\displaystyle{ \delta- }[/math]intersecting curves. [math]\displaystyle{ n }[/math] is the largest number of elements in the queue at any given time, while [math]\displaystyle{ m }[/math] refers to the total number of elements that are ever in the queue.

Applications

Kinetic priority queues are used as part of other kinetic data structures/algorithms such as kinetic closest pair, kinetic max-cut[3] or kinetic clustering.[4]

They can also be used to solve problems such as broadcast scheduling[5] or the connected red blue segments intersection problem.[6]

References

  1. Brodal, G.S.; Jacob, R. (2002). "Dynamic planar convex hull". FCS. pp. 617–626. doi:10.1109/SFCS.2002.1181985. 
  2. da Fonseca, Guilherme D.; de Figueiredo, Celina M. H.. "Kinetic hanger". Information Processing Letters. pp. 151–157. http://www.uniriotec.br/~fonseca/hanger.pdf. 
  3. Czumaj, Arthur; Frahling, Gereon; Sohler, Christian (2007). "Efficient kinetic data structures for MaxCut". Canadian Conference on Computational Geometry. http://static.googleusercontent.com/external_content/untrusted_dlcp/research.google.com/en/us/pubs/archive/32977.pdf. Retrieved May 17, 2012. 
  4. Li, Yifan; Han, Jiawei; Yang, Jiong. "Clustering moving objects". SIGKDD. ACM. pp. 617–622. http://dl.acm.org/citation.cfm?id=1014129. 
  5. Haim Kaplan; Robert E. Tarjan; Kostas Tsioutsiouliklis (2001). "Faster kinetic heaps and their use in broadcast scheduling". ACM. pp. 836–844. 
  6. Basch, Julien; Guibas, Leonidas; Ramkumar, G. (1996). "Reporting red-blue intersections between two sets of connected line segments". Springer Berlin / Heidelberg. doi:10.1007/3-540-61680-2_64. ISBN 978-3-540-61680-1.