edited by
2,570 views

1 Answer

Best answer
3 votes
3 votes

The efficient algorithm to multiply the two matrices has the time complexity O(n2.81) using Strassen’s algorithm.

selected by
Answer:

Related questions

2.9k
views
2 answers
3 votes
go_editor asked Jul 28, 2016
2,938 views
The recurrence relation $T(n) =mT(\frac{n}{2}) + tan^2$ is satisfied byO(n$^2$)O(n$^{lg \, m}$)O(n$^2 \: lg \:n)$O(n lg n)
2.1k
views
2 answers
2 votes
go_editor asked Jul 28, 2016
2,097 views
Assuming there are n keys and each key is in the range [0, m-1]. The run time of bucket sort isO(n)O(n lgn)O(n lgm)O(n+m)
5.8k
views
2 answers
3 votes
go_editor asked Jul 28, 2016
5,773 views
The longest common subsequence of the sequences $X=<A, B, C, B, D, A, B>$ and $Y=<B, D, C, A, B, A>$ has length$2$3$4$5$
3.3k
views
2 answers
2 votes
go_editor asked Jul 26, 2016
3,318 views
Big-O estimate for $f(x)=(x+1) \log(x^2 +1) + 3x^2 $ is given as$O(x \log x)$O(x^2)$O(x^3)$O(x^2 \log x)$