Since very long i am trying to solve a question from a quiz , but i am getting wrong answer , the question is as follows :-
Consider the program:
for i from 1 to 12:
MakeSet(i)
Union(2, 10)
Union(7, 5)
Union(6, 1)
Union(3, 4)
Union(5, 11)
Union(7, 8)
Union(7, 3)
Union(12, 2)
Union(9, 6)
Assume that the disjoint sets data structure is implemented as disjoint trees with union by rank heuristic.
Compute the product of the heights of the resulting trees after executing the code. For example, for a forest consisting of four trees of height 1, 2, 3, 1 the answer would be 6. (Recall that the height of a tree is the number of edges on a longest path from the root to a leaf. In particular, the height of a tree consisting of just one node is equal to 0.)
i solve this question and get the answer as 5 (2*2*1), but it is showing wrong when i submit it, i have tried many times ,please me in calculating this ...