C# code - SerKalayder/Csharp-code GitHub Wiki

Content

Language

Algorithms


Algorithms

Karatsuba multiplication

View code

The Karatsuba algorithm is a fast multiplication algorithm. It was discovered by Anatolii Alexeevitch Karatsuba in 1960 and published in 1962. It reduces the multiplication of two n-digit numbers. It is faster than the classical algorithm, which requires n^2 single-digit products.

Undirected graph data type

View code