Re: [algogeeks] graphs again

2010-07-04 Thread Ashish Goel
i would prepare the transitivity matrix while inserting the edge into the matrix the search then would be a O(1) Best Regards Ashish Goel "Think positive and find fuel in failure" +919985813081 +919966006652 On Sun, Jul 4, 2010 at 3:15 PM, jalaj jaiswal wrote: > A graph is given. You need to

[algogeeks] graphs again

2010-07-04 Thread jalaj jaiswal
A graph is given. You need to design a data structure with minimum space complexity such that it does the follows --> Finds whether nodes u and v have a path in between them in O(1) time. --> Finds whether there is a path of length k between u and v in O(k) time. The same data structure to be used