Multiplication algorithm: Difference between revisions

Content deleted Content added
Line 416:
Algorithm uses divide and conquer strategy, to divide problem to subproblems.
What is important, is to make subproblems of equal size.
 
It has a time complexity of O(''n'' log(''n'') log(log(''n''))).