Data Structures | Graph | Question 3
The time complexity of computing the transitive closure of a binary relation on a set of n elements is known to be:
(A) O(n)
(B) O(nLogn)
(C) O(n ^ (3/2))
(D) O(n^3)
Answer: (D)
Explanation: See question 3 of https://www.geeksforgeeks.org/data-structures-and-algorithms-set-22/
Please Login to comment...