Which of the following techniques is the best option for dividing an integer by 2 and why?
Technique 1:
x = x >> 1;
Technique 2:
x = x / 2;
Here x is an integer.
|
Which of the following techniques is the best option for dividing an integer by 2 and why? Technique 1:
Technique 2:
Here |
||||
| show 7 more comments |
|
Use the operation that best describes what you are trying to do.
Note that they are not exactly equivalent. They can give different results for negative integers. For example:
|
|||||||||||||||||||||
|
|
Does the first one look like dividing? No. If you want to divide, use |
|||||||||||||||||
|
|
To pile on: there are so many reasons to favor using
In short, you buy nothing by coding a shift when you really mean to multiply or divide, except maybe an increased possibility of introducing a bug. It's been a lifetime since compilers weren't smart enough to optimize this kind of thing to a shift when appropriate. |
|||||||||||||||||
|
Depends on what you mean by best. If you want your colleagues to hate you, or to make your code hard to read, I'd definitely go with the first option. If you want to divide a number by 2, go with the second one. The two are not equivalent, they don't behave the same if the number is negative or inside larger expressions - bitshift has lower precedence than You should write your code to express what its intent is. If performance is your concern, don't worry, the optimizer does a good job at these sort of micro-optimizations. |
||||
|
|
|
Just use divide ( |
|||||||||
|
|
I agree with other answers that you should favor However, another reason for preferring From section 6.5.7, bullet 5 of the ISO C99 standard:
|
|||
|
|
|
For Java there is also the unsigned right shift, |
||||
|
|
|
Knuth said:
So I suggest to use This way the code is easy to understand and also I think that the optimization of this operation in that form, don't mean a big difference for the processor. |
|||
|
|
|
Just an added note - x *= 0.5 will often be faster in some VM-based languages -- notably actionscript, as the variable won't have to be checked for divide by 0. |
|||||||||||||
|
|
Take a look at the compiler output to help you decide. I ran this test with What you see is the compiler does use a C code with assembly output: For divide, your input would be
and this compiles to
similarly for shift
with output:
|
|||
|
|
|
I am telling for the purpose of programming competitions. Generally they have very large inputs where division by 2 takes place many times and its known that input is positive or negative. x>>1 will be better than x/2. I checked on ideone.com by running a program where more than 10^10 division by 2 operations took place. x/2 took nearly 5.5s whereas x>>1 took nearly 2.6s for same program. |
|||
|
|
|
I would say there are several things to consider.
If you are after pure performance, I would recommend creating some tests that could do the operations millions of times. Sample the execution several times (your sample size) to determine which one is statistically best with your OS/Hardware/Compiler/Code. |
|||||
|
|
Use |
|||||
|
|
x = x / 2; is the suitable code to use.. but an operation depend on your own program of how the output you wanted to produce. |
|||
|
|
|
As far as the CPU is concerned, bit-shift operations are faster than division operations.
However, the compiler knows this and will optimize appropriately to the extent that it can,
so you can code in the way that makes the most sense and rest easy knowing that your code is
running efficiently. But remember that an |
|||
|
|
|
Make your intentions clearer...for example, if you want to divide, use x / 2, and let the compiler optimize it to shift operator (or anything else). Today's processors won't let these optimizations have any impact on the performance of your programs. |
|||
|
|
|
The answer to this will depend on the environment you're working under.
All these assume unsigned integers. The simple shift is probably not what you want for signed. Also, DanielH brings up a good point about using |
|||
|
|
|
generaly the right shift divides :
this is sometimes used to speed up programs at the cost of clarity. I don't think you should do it . The compiler is smart enough to perform the speedup automatically. This means that putting in a shift gains you nothing at the expense of clarity. Take a look at this page from Practical C++ Programming. |
||||
|
|
|
Obviously, if you are writing your code for the next guy who reads it, go for the clarity of "x/2". However, if speed is your goal, try it both ways and time the results. A few months ago I worked on a bitmap convolution routine which involved stepping through an array of integers and dividing each element by 2. I did all kinds of things to optimize it including the old trick of substituting "x>>1" for "x/2". When I actually timed both ways I discovered to my surprise that x/2 was faster than x>>1 This was using Microsoft VS2008 C++ with the default optimizations turned on. |
||||
|
|
|
In terms of performance. CPU's shift operations are significantly faster than divide op-codes. So dividing by two or multiplying by 2 etc all benefit from shift operations. As to the look and feel. As engineers when did we become so attached to cosmetics that even beautiful ladies don't use! :) |
|||
|
|
|
X/Y is a correct one...and " >> " shifting operator..if we want two divide a integer we can use (/) dividend operator. shift operator is used to shift the bits.. x=x/2; x/=2; we can use like this.. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
xagain, neither is appropriate in this way: it should be eitherx >>= 1orx /= 2, depending on what you intend to express with the operation. Not because it's faster (any modern compiler will compile all the equivalent variants to identical, fast assembly anyway) but because it's less confusing. – leftaroundabout May 21 '12 at 13:46x = x >>> 1. Also note that depending on the platform and compiler it may be quite reasonable to manually optimize divisions and multiplications using shifts. - Thinking of micro controllers, for instance, w/o direct ALU support for multiplication. – Hanno Binder May 21 '12 at 19:59x /= 2becausex >>= 1looks too much like monadic bind ;) – FredOverflow May 22 '12 at 4:50x = x / 2instead ofx /= 2. Subjective preference maybe :) – Hanno Binder May 23 '12 at 14:51⬜=combinations, these should be used whenever it's possible. It removes noise and puts emphasis on the fact thatxis modified, while the general=operator rather suggests that it takes on a completely new value independent of the old one. — Always avoiding the combined operators (so that it's readable so someone who only knows mathematical operators) may have its point as well, but then you'd need to relinquish the extremely useful++,--,+=, too. – leftaroundabout May 23 '12 at 15:20