The worst case time complexity of tree sort remains unaffected when implemented with an unbalanced tree or a balanced tree.
The worst case time complexity of tree sort remains unaffected when implemented with an unbalanced tree or a balanced tree. Correct Answer False
The time complexity of tree sort is affected when implemented with an unbalanced tree or a balanced tree. In case of a balanced tree it is O(n log n) and in case of unbalanced tree it is O(n2).