Fig. 1. Triple heap height
Theorem 2. Time to create a triple heap is linear
Tcreate (n) . (17)
Proof. Building the last level in triple heap requires k · n
3k operations, where k
is the height of the heap and n is the number of it’s elements. In the heap, there
is no more than n
3k + 1 nodes at height k and by inserting next element into
the heap we do k operations. The time to create triple heap is then
Tcreate (n) =
k
Xi=2
i ·
n
3i ≤ n ·
1
Xi=2
i
3i . (18)
Infinite series in (18) is convergent of d’Alembert criterion because
lim
i!1
ai+1
ai
= lim
i!1
i+1
3i+1
i
3i
= lim
i!1
i + 1
i
·
3i
3i+1 =
1
3
. (19)
Based on the convergence of series in (18) we can write down formula (20) to
describe time complexity of triple heap creating algorithm
Tcreate (n) ≤ n ·
1
Xi=2
i
3i ≤ n ·
1
3
. (20)
Thus in equation (20) we can estimate time complexity as
Tcreate (n) ≤ C · n, (21)
where C is the number of operations made to compare descendants of the node.
Therefore, time to create triple heap is linear. ⊓⊔
Finally we can estimate time complexity of triple heap sorting algorithm.
Theorem 3. Presented triple heap sorting algorithm is sorting a string of n
elements in an average time
# (n · log3 n) . (22)