Question: What is the time complexity of deleting a node from a binary search tree in the average case?
Options:
Correct Answer: O(log n)
Solution:
In the average case, deleting a node from a balanced binary search tree has a time complexity of O(log n).