How to convert last 3 digits of number into 0
example 3444678 to 3444000
I can do like
(int)(3444678/1000) * 1000= 3444000
But division and multiplication could be costly...
Any other solution????
|
1
|
How to convert last 3 digits of number into 0 example 3444678 to 3444000 I can do like (int)(3444678/1000) * 1000= 3444000 But division and multiplication could be costly... Any other solution????
|
||||||||
|
|
|
If you are working on octal, you can simply:
If you are working on hex, you can simply:
But for decimal, you should probably do it the way Jesse Beder suggests:
Most systems have a fast integer divide; if you're working on a system that doesn't, you could use the double dabble algorithm to fast convert to bcd. Look at the section about dividing by ten. Depending on what else you're trying to do, it may be easier to truncate when converting the number to a printable (string) format as Avitus suggested. |
||
|
|
|
|
A shift trick, then:
Is it faster? Doubtful. But here's a fun fact: gcc doesn't use division/modulus for this:
It multiplies by some crazy number (274877907) and does some other stuff which is presumably faster. The moral of this story: the more obvious the purpose of your code is to the compiler, the more likely it is that the compiler will optimise it in a way you'd never think of. If the code is easier for humans to understand, that's another bonus. |
||
|
|
|
Just as a by the way (you've gotten good input here already). Bit manipulation never works with decimal numbers. The problem is that the values of the bits don't map to decimal at all. With BCD it works great, but nobody ever uses that (maybe BigDecimal does??? I doubt it though). Anyway, the one base-10 trick you can use is multiplying by factors of 10, but it's never worth while unless you are coding assembly on some 1970's CPU; but just because it's polluting my memory banks, I'll post it for your amusement:
But the math co-processor can do it so much quicker than that, just NEVER OPTIMIZE! The fact that you even take execution speed into consideration is an issue, and your "optimization" is usually as likely to slow the system down than speed it up. I believe you can use a similar method to divide by 10, but I'm not going to try to figure it out--it's late--If I remember correctly it has something to do with examining the bits shifted out and adding values back in based on their value. |
||||||||
|
|
|
If you want to round to an arbitrary precision and your round method lacks precision control, this should work: In Perl at least, mod should still be fasterHeres why: Sample of ( 10 ** 7 ) * 3 random floats produced this benchmark:
Do note however that Ok, bit side topic :/ ( Perl Implementation using only Int, which truncates instead of rounding normally )
.
using Modulus methodThis works as above, ( except without rounding ) using modulus method for ints, but still works for rounding into float precision ( with a bit of a slow-down for precisions right of the decimal point.
.
|
|||
|
|
|
|
Then you just call takeAway then addZeroes. Couldn't be simpler! I was tempted to add in an int temp = num and then use that but figured that would be too much, even for this code. |
||||||||||
|
|
|
You could try
but the modulus operator might be as costly as a division. In any case, this sounds an awful lot like a micro-optimization. Is this really your bottleneck? |
||||||||||
|