vote up 0 vote down star

I am doing this..

value >> 3;

It is always going toward negative side.How do I round toward zero with right shift division?

flag

43% accept rate
2  
Why are you dividing by 8 with a right shift? This is something the compiler should be doing for you. – Chris Lutz Sep 23 at 3:04
Two's complement representation causes negatives when divided to round toward floor. How to fix this? Also a quote from wikipedia "On an "N's-complement" architecture (for radix "N") an arithmetic shift is equivalent to a division that rounds towards negative infinity, not towards zero. " – RealHIFIDude Sep 23 at 3:05
1  
Oh please.. this is a puzzle.. – RealHIFIDude Sep 23 at 3:05
I don't understand what it being a puzzle has to do with writing unreadable code. Have you checked how normal division rounds? – Chris Lutz Sep 23 at 3:09
2  
Just some advice, @RealHIFIDude, you should go back through some of your asked questions (stackoverflow.com/users/153745/…) and accept some of the answers (by clicking on the green arrows next to them). That "0% accept rate" you can see under your question may put people off from answering your questions - not me of course, I'm of the personality type that could talk the rear leg off a camel :-) – paxdiablo Sep 23 at 4:16
show 2 more comments

4 Answers

vote up 0 vote down

You are encountering 'signed' shifting, when what you seem to want is unsigned shifting. Try casting it to unsigned first, like this

x = ((unsigned) x) >> 3;

.. or you could just use division.

link|flag
vote up 1 vote down

Try the following expression instead:

(value < 0) ? -((-value) >> 3) : value >> 3;

That will force a negative number to be positive first so that it round towards zero, then changes the result back to negative.

link|flag
vote up 3 vote down

Do something conditionally depending on whether your value is positive or negative.

if( value < 0 ) {
    -((-value) >> 3);
}
else {
    value >> 3;
}
link|flag
vote up 1 vote down

I do this:

(value + 4) >> 3
link|flag
But the positives when divided are going up by 1 :( – RealHIFIDude Sep 23 at 3:09
1  
Perhaps I didn't understand your question properly. If you change it to ((value + 3) >> 3) do you get what you want ? – Adam Pierce Sep 23 at 3:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.