|
|
|
|
|
by karpierz
1523 days ago
|
|
Theta(X) is not "average case" behaviour, it means "both Omega(X) and O(X)". Ex: merge sort is Theta(n log(n)), but quick sort is not. The author is likely saying "worst case O(n log(n))" as redundancy to emphasize that this is worst case behaviour. |
|