Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

odd/even bitwise and

6 views
Skip to first unread message

Serve Laurijssen

unread,
Apr 6, 2004, 5:32:26 AM4/6/04
to
Some people prefer to use
"if (x & 1)"
to see if a number is odd or even. Is this completely portable according to
the standard?


Ahmed S. Badran

unread,
Apr 6, 2004, 7:39:08 AM4/6/04
to

"Serve Laurijssen" <c...@nospam.comp.com> wrote in message
news:eJucc.5394$RU5.83970@zonnet-reader-1...

> "if (x & 1)"
> to see if a number is odd or even. Is this completely portable according
to
> the standard?

I don't know what does this have to do with the standard, but the thing is
an odd number will ALWAYS have bit 0 set to '1' and an even number will
always have bit 0 set to '0'. This is a matter of binary representation.

Ahmed


CBFalconer

unread,
Apr 6, 2004, 7:43:11 AM4/6/04
to

Only if x is some form of unsigned integer.

--
Chuck F (cbfal...@yahoo.com) (cbfal...@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!


pete

unread,
Apr 6, 2004, 7:59:15 AM4/6/04
to

If x is an unsigned integer type
or a signed type with a non negative value, then it's portable.

--
pete

pete

unread,
Apr 6, 2004, 8:26:56 AM4/6/04
to
Ahmed S. Badran wrote:
>
> "Serve Laurijssen" <c...@nospam.comp.com> wrote in message
> news:eJucc.5394$RU5.83970@zonnet-reader-1...
> > "if (x & 1)"
> > to see if a number is odd or even.
> > Is this completely portable according to the standard?
>
> I don't know what does this have to do with the standard,

The answer to the question, is in the standard.

> but the thing is an odd number will ALWAYS have bit 0 set to
> '1' and an even number will always have bit 0 set to '0'.

That's not true for one's complement
representations of negative integers.

> This is a matter of binary representation.

The standard specifies more than one
way to represent negative integers.

--
pete

osmium

unread,
Apr 6, 2004, 8:31:33 AM4/6/04
to
Ahmed S. Badran writes:

> > "if (x & 1)"
> > to see if a number is odd or even. Is this completely portable according
> to
> > the standard?
>
> I don't know what does this have to do with the standard, but the thing is
> an odd number will ALWAYS have bit 0 set to '1' and an even number will
> always have bit 0 set to '0'. This is a matter of binary representation.

It depends on the hardware. If x is a one's complement representation of 0
the test might fail. It strikes me as code intended to impress someone with
one's erudition, I would not do it.


Ahmed S. Badran

unread,
Apr 6, 2004, 11:11:58 AM4/6/04
to
Ok, just to re-elaborate and make the answer complete, I never took negative
numbers into consideration with my previous answer, so my previous answer is
valid/correct with all positive integers. Thanks for pointing that out guys.

Ahmed

Rogério Brito

unread,
Apr 6, 2004, 11:20:52 AM4/6/04
to

No. That is only possible if the representation of the integers use
twos-complement.

To see if a number is odd or even, use the modulus operator (e.g., x%2).

--
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Rogério Brito - rbr...@ime.usp.br - http://www.ime.usp.br/~rbrito
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Mark Henning

unread,
Apr 6, 2004, 12:02:21 PM4/6/04
to
Rogério Brito wrote:
> No. That is only possible if the representation of the integers use
> twos-complement.
>
> To see if a number is odd or even, use the modulus operator (e.g., x%2).

That is the way that I have always done it, although it occurs to me
that AND-ing a value with one may be a significantly simpler computation
than calculating the remainder of a divide by two in the majority of
circumstances. This method might be worth considering for unsigned
integers.

M. Henning.


Rogério Brito

unread,
Apr 6, 2004, 12:54:25 PM4/6/04
to
Mark Henning wrote:
> That is the way that I have always done it, although it occurs to me
> that AND-ing a value with one may be a significantly simpler computation
> than calculating the remainder of a divide by two in the majority of
> circumstances. This method might be worth considering for unsigned
> integers.

Sure, if you can assume certain things about the platform, then you can
usually make some things slightly more efficient. But then the code is
not portable anymore, which was what started the thread.

And you might argue that the code is a little bit more obfuscated, since
it is not expressing what you wanted in the first place (seeing the
remainder of the division by two).

These small optimizations are what Knuth is talking about when he says
that "premature optimization is the root of all evil".

And, of course, a smart compiler could very well see that the target
platform uses a twos-complement and transform the particular cases of
remainders modulo a power of two into a corresponding bitwise AND
operation. The same for multiplying or dividing by a power of two and
using appropriate shift operations.

Chris Torek

unread,
Apr 6, 2004, 12:53:04 PM4/6/04
to
In article <news:c4ukgf$2ce$1...@taliesin2.netcom.net.uk>
Mark Henning <mahe...@btopenworld.com> writes:
>[using % to obtain integer remainder after division] is the way that
>I have always [tested for even/odd], although it occurs to me

>that AND-ing a value with one may be a significantly simpler computation
>than calculating the remainder of a divide by two in the majority of
>circumstances. This method might be worth considering for unsigned
>integers.

This is true; but at the same time, on any machine where it matters,
any optimizing compiler worthy of the word "optimizing" should turn:

x % constant

into:

x & (constant - 1)

whenever the given constant is a power of two, because these always
produce the same result (for an unsigned x).

For signed integers (and still power-of-two constants), the process
is a bit more difficult -- a typical two's complement signed integer
gives different answers for "x % CONST" and "x & (CONST-1)" when
x is negative. There are bit-twiddling tricks that can be used if
the value is required, though; and if only the "truth-ness" of the
value is of interest, the above transform again works. That is:

if (x % 8)

and:

if (x & 7)

are both true (or false) in the same sets of cases, even when x is
signed, as long as the machine uses two's complement. This allows
an optimizing compiler to "do the right thing".
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.

Eric Sosman

unread,
Apr 6, 2004, 1:14:55 PM4/6/04
to

What fraction of your program's running time is expended
on determining whether a number is even or odd? One percent
seems high, but let's be generous and suppose your design calls
for a really large number of such determinations. All right,
how much faster might "and" be than "remainder?" Machine-
specific, of course, but let's again be generous and suppose
"modulus" takes whatever it takes while "and" is infinitely
faster, taking zero time. Switching from "modulus" to "and"
would speed up your program by ...

<< May I have the envelope, please? >>

... a WHOPPING one percent! WOW!!!

If your other problems are so insignificant that something
this tiny becomes important, you are to be envied.

--
Eric....@sun.com

Kevin D. Quitt

unread,
Apr 6, 2004, 5:53:13 PM4/6/04
to
On Tue, 6 Apr 2004 17:11:58 +0200, "Ahmed S. Badran"
<a_ba...@hotmail.com> wrote:
>so my previous answer is
>valid/correct with all positive integers.

Unless, of course, there are padding bits in the integer. The only
correct way to test for mathematical even or odd is to use a mathematical
expression.


--
#include <standard.disclaimer>
_
Kevin D Quitt USA 91387-4454 96.37% of all statistics are made up
Per the FCA, this address may not be added to any commercial mail list

Martin Ambuhl

unread,
Apr 6, 2004, 6:38:10 PM4/6/04
to
Serve Laurijssen wrote:

NO.


pete

unread,
Apr 6, 2004, 6:58:01 PM4/6/04
to
Rogério Brito wrote:
>
> Serve Laurijssen wrote:
> > Some people prefer to use
> > "if (x & 1)"
> > to see if a number is odd or even.
> > Is this completely portable according to the standard?
>
> No. That is only possible if the representation of the integers use
> twos-complement.

It's also possible with Sign and Magnitude representation.

--
pete

pete

unread,
Apr 6, 2004, 7:01:26 PM4/6/04
to
Kevin D. Quitt wrote:
>
> On Tue, 6 Apr 2004 17:11:58 +0200, "Ahmed S. Badran"
> <a_ba...@hotmail.com> wrote:
> >so my previous answer is
> >valid/correct with all positive integers.
>
> Unless, of course, there are padding bits in the integer.

Makes no difference if there are padding bits in the integer.
(x & 1) is true for all positive odd int x, regardless of padding.

--
pete

August Derleth

unread,
Apr 6, 2004, 11:44:30 PM4/6/04
to

Wouldn't that be "signed magnitude"? Or are there some other
representations I'm missing out on?

(The ones I know of are signed magnitude, one's complement, and two's
complement.)

--
yvoregnevna gjragl-guerr gjb-gubhfnaq guerr ng lnubb qbg pbz
To email me, rot13 and convert spelled-out numbers to numeric form.
"Makes hackers smile" makes hackers smile.

Message has been deleted

Barry Schwarz

unread,
Apr 7, 2004, 12:45:16 AM4/7/04
to

There are systems where bit 0 is the high order or sign bit, not the
low order one.


<<Remove the del for email>>

Kevin D. Quitt

unread,
Apr 7, 2004, 10:13:05 PM4/7/04
to

According to what?

pete

unread,
Apr 7, 2004, 11:35:35 PM4/7/04
to
Kevin D. Quitt wrote:
>
> On Tue, 06 Apr 2004 23:01:26 GMT, pete <pfi...@mindspring.com> wrote:
>
> >Kevin D. Quitt wrote:
> >>
> >> On Tue, 6 Apr 2004 17:11:58 +0200, "Ahmed S. Badran"
> >> <a_ba...@hotmail.com> wrote:
> >> >so my previous answer is
> >> >valid/correct with all positive integers.
> >>
> >> Unless, of course, there are padding bits in the integer.
> >
> >Makes no difference if there are padding bits in the integer.
> >(x & 1) is true for all positive odd int x, regardless of padding.
>
> According to what?

According to the facts that if x is a positve int,
then the representation for x and the representation for 1,
have the same corresponding value bits and the same corresponding
sign bit and the same corresponding padding bits.
And the padding bits aren't part of the value
of either x or 1 or (x & 1).

How do you figure padding bits make a difference ?

--
pete

Serve Laurijssen

unread,
Apr 8, 2004, 10:26:08 AM4/8/04
to

"Barry Schwarz" <schw...@deloz.net> wrote in message
news:c5010s$r14$4...@216.39.134.78...

> There are systems where bit 0 is the high order or sign bit, not the
> low order one.

ok, but what's the bit representation of 1 on such a system then? x & 1
could work on such a system too I'd say.


Michael Wojcik

unread,
Apr 8, 2004, 5:56:10 PM4/8/04
to

In article <Pine.LNX.4.58-035...@unix50.andrew.cmu.edu>, "Arthur J. O'Dwyer" <a...@nospam.andrew.cmu.edu> writes:
>
> You're not missing any representation methods allowed by the C
> standard, although I'm sure there are many more outlandish ones
> out there.

There are non-outlandish (inlandish?) integer representations which
are not allowed by the C standard, too, such as BCD and various
bignum representations. Or representing integers using a different
byte order than the machine's native one - quite common in COBOL
programs, to maintain binary compatibility with data files generated
by mainframe COBOL programs. The Standard mandates a "pure binary"
representation for good reason (consistent behavior across
implementations), but there are often good reasons to employ other
sorts of representations. It's not in the spirit of C to support
those directly (unlike COBOL, which has evolved by tacking on
features to handle whatever the problem of the moment is), which
is fine, but they're not rare.

Really, it's ones'-complement that few people these days are likely
to encounter.

--
Michael Wojcik michael...@microfocus.com

Pocket #9: A complete "artificial glen" with rocks, and artificial moon,
and forester's station. Excellent for achieving the effect of the
sublime without going out-of-doors. -- Joe Green

Barry Schwarz

unread,
Apr 8, 2004, 9:11:31 PM4/8/04
to

The bit representation is still normal binary. The only difference is
the nomenclature assigned to the bits, which is a detail C doesn't
address or need to.

Of course it works under the conditions others have identified. My
comment only addressed the point raised by Ahmed S. Badran that you
snipped which stated that bit 0 is the low order bit. It need not be.

pete

unread,
Apr 8, 2004, 9:50:11 PM4/8/04
to

Bit 0 isn't mentioned in the standard.
The right bits are low order. The left bits are high order.

--
pete

Richard Bos

unread,
Apr 9, 2004, 4:28:57 AM4/9/04
to
mwo...@newsguy.com (Michael Wojcik) wrote:

> In article <Pine.LNX.4.58-035...@unix50.andrew.cmu.edu>, "Arthur J. O'Dwyer" <a...@nospam.andrew.cmu.edu> writes:
> >
> > You're not missing any representation methods allowed by the C
> > standard, although I'm sure there are many more outlandish ones
> > out there.
>
> There are non-outlandish (inlandish?) integer representations which
> are not allowed by the C standard, too, such as BCD and various
> bignum representations. Or representing integers using a different
> byte order than the machine's native one

How is this forbidden? I can't find it in 6.2.6.2.

Richard

Stephen Sprunk

unread,
Apr 10, 2004, 4:18:07 AM4/10/04
to
"Chris Torek" <nos...@torek.net> wrote in message
news:c4un9...@news1.newsguy.com...

> In article <news:c4ukgf$2ce$1...@taliesin2.netcom.net.uk>
> Mark Henning <mahe...@btopenworld.com> writes:
> >[using % to obtain integer remainder after division] is the way that
> >I have always [tested for even/odd], although it occurs to me
> >that AND-ing a value with one may be a significantly simpler computation
> >than calculating the remainder of a divide by two in the majority of
> >circumstances. This method might be worth considering for unsigned
> >integers.
>
> This is true; but at the same time, on any machine where it matters,
> any optimizing compiler worthy of the word "optimizing" should turn:
>
> x % constant
> into:
> x & (constant - 1)
>
> whenever the given constant is a power of two, because these always
> produce the same result (for an unsigned x).

For the record, I just tested gcc 2.91.66 for x86 and it strength-reduces (x
% 2) to (i & 1) even with no optimization enabled.

Thanks for the portability tip -- I'd been "prematurely optimizing" this for
years.

S

--
Stephen Sprunk "Stupid people surround themselves with smart
CCIE #3723 people. Smart people surround themselves with
K5SSS smart people who disagree with them." --Aaron Sorkin


Michael Wojcik

unread,
Apr 13, 2004, 11:06:51 AM4/13/04
to

In article <40765e02....@news.individual.net>, r...@hoekstra-uitgeverij.nl (Richard Bos) writes:

> mwo...@newsguy.com (Michael Wojcik) wrote:
>
> > There are non-outlandish (inlandish?) integer representations which
> > are not allowed by the C standard, too, such as BCD and various
> > bignum representations. Or representing integers using a different
> > byte order than the machine's native one
>
> How is this forbidden? I can't find it in 6.2.6.2.

It doesn't appear to be (though it could be argued that it would violate
the spirit of the "pure binary representation" requirement). I added
it in a later edit of the paragraph, without sufficient care. Thanks
for the catch.

BCD and some bignum representations are still good examples, though.

--
Michael Wojcik michael...@microfocus.com

0 new messages