Bottom-Up Mergesort Analysis
l
Let T(j) = steps at levels
<
j
l
Then
l
T(1) = c n, c some constant
l
T(j+1) = T(j) + c n
l
T(log(n)) is the time to sort n elements
= c n log(n)