C# Algorithms for * Operator
Posted
by
Harsha
on Programmers
See other posts from Programmers
or by Harsha
Published on 2012-12-11T17:40:37Z
Indexed on
2012/12/11
23:14 UTC
Read the original article
Hit count: 296
c#
|algorithms
I was reading up on Algorithms and came across the Karatsuba multiplication algorithm and a little wiki-ing led to the Schonhage-Strassen and Furer algorithms for multiplication.
I was wondering what algorithms are used on the * operator in C#? While multiplying a pair of integers or doubles, does it use a combination of algorithms with some kind of strategy based on the size of the numbers? How could I find out the implementation details for C#?
© Programmers or respective owner