![]() |
Using shift operator for faster division and multiplication
Multiplications
12 * 2 = 12 << 1 12 * 4 = 12 << 2 12 * 8 = 12 << 3 12 * 16 = 12 << 4 12 * 32 = 12 << 5 12 * 64 = 12 << 6 12 * 128 = 12 << 7 12 * 256 = 12 << 8 Divisions 12 / 2 = 12 >> 1 12 / 4 = 12 >> 2 12 / 8 = 12 >> 3 12 / 16 = 12 >> 4 12 / 32 = 12 >> 5 12 / 64 = 12 >> 6 12 / 128 = 12 >> 7 12 / 256 = 12 >> 8 Code: C
|
Re: Using shift operator for faster division and multiplication
in machine terms,
for i12 / 256, 12 >> 8 is faster. Is that what you mean? or just for easier calculations? |
Re: Using shift operator for faster division and multiplication
this method does not work if you have logic one at msb
for eg Code: cpp
|
| All times are GMT +5.5. The time now is 12:34. |