- Source: Brodal queue
In computer science, the Brodal queue is a heap/priority queue structure with very low worst case time bounds:
O
(
1
)
{\displaystyle O(1)}
for insertion, find-minimum, meld (merge two queues) and decrease-key and
O
(
l
o
g
(
n
)
)
{\displaystyle O(\mathrm {log} (n))}
for delete-minimum and general deletion. They are the first heap variant to achieve these bounds without resorting to amortization of operational costs. Brodal queues are named after their inventor Gerth Stølting Brodal.
While having better asymptotic bounds than other priority queue structures, they are, in the words of Brodal himself, "quite complicated" and "[not] applicable in practice." Brodal and Okasaki describe a persistent (purely functional) version of Brodal queues.
Summary of running times
Here are time complexities of various heap data structures. The abbreviation am. indicates that the given complexity is amortized, otherwise it is a worst-case complexity. For the meaning of "O(f)" and "Θ(f)" see Big O notation. Names of operations assume a min-heap.
Gerth Stølting Brodal
Gerth Stølting Brodal is a professor at the University of Aarhus, Denmark. He is best known for the Brodal queue.
References
Kata Kunci Pencarian:
- Brodal queue
- Priority queue
- Heap (data structure)
- Fibonacci heap
- Strict Fibonacci heap
- Dijkstra's algorithm
- Binomial heap
- Comparison of data structures
- List of data structures
- Purely functional data structure