Karatsuba Multiplication
Jump to navigation
Jump to search
Internal
Overview
Apply the Gauss' trick and end up with three recursive calls instead of four. This yields a O(n*logn) complexity.
TODO
Apply the Gauss' trick and end up with three recursive calls instead of four. This yields a O(n*logn) complexity.
TODO