Question: What is the worst-case time complexity of the union operation in a basic Disjoint Set Union without optimizations?
Options:
Correct Answer: O(n)
Solution:
The worst-case time complexity of the union operation in a basic Disjoint Set Union without optimizations is O(n).