From Wikipedia: Tournament sort is a sorting algorithm. It improves upon the naive selection sort by using a priority queue to find the next element in the sort. Time complexity is `O(n log n)`, where `n` is the number of elements. Space complexity is `O(n)`.
(arr: &[T])
source not stored for this graph (policy: none)