Question: What is the time complexity of searching for a value in a Red-Black tree?
Options:
Correct Answer: O(log n)
Solution:
Searching for a value in a Red-Black tree takes O(log n) time due to its balanced structure.