This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: pow(int , int)


> 
> 3^15 = c * b * a
> 
> a = 3 * 3 = 3^2
> b = a * a = 3^4
> c = b * b = 3^8
> 
> saves you about 10 multiplications (5 instead of 15).
> 

typo:

3^15 = c * b * a * 3

saves about 9, not 10...


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]