How best can I check if an integer is even or odd in C? I considered how I'd do this in Java, but I couldn't come up with an answer either. Thanks.
|
|
Use the modulo (%) operator to check if there's a remainder when dividing by 2:
A few people have criticized my answer above stating that using x & 1 is "faster" or "more efficient". I do not believe this to be the case. Out of curiosity, I created two trivial test case programs:
I then compiled these with gcc 4.1.3 on one of my machines 5 different times:
I examined the assembly output of each compile (using gcc -S) and found that in each case, the output for and.c and modulo.c were identical (they both used the andl $1, %eax instruction). I doubt this is a "new" feature, and I suspect it dates back to ancient versions. I also doubt any modern (made in the past 20 years) non-arcane compiler, commercial or open source, lacks such optimization. I would test on other compilers, but I don't have any available at the moment. If anyone else would care to test other compilers and/or platform targets, and gets a different result, I'd be very interested to know. Finally, the modulo version is guaranteed by the standard to work whether the integer is positive, negative or zero, regardless of the implementation's representation of signed integers. The bitwise-and version is not. Yes, I realise two's complement is somewhat ubiquitous, so this is not really an issue. |
|||||||||||||||||||||
|
|
You guys are waaaaaaaay too efficient. What you really want is:
Repeat for Of course, that doesn't work for negative numbers. But with brilliance comes sacrifice... |
|||||||||||||||||||||
|
|
Use bit arithmetic:
This is faster than using division or modulus. |
|||||||||||||||||||||
|
|
[Joke mode="on"]
[Joke mode="off"] EDIT: Added confusing values to the enum. |
|||||||||||||||||||||
|
|
A nice one is:
Note that this method use tail recursion involving two functions. It can be implemented efficiently (turned into a while/until kind of loop) if your compiler supports tail recursion like a Scheme compiler. In this case the stack should not overflow ! |
|||||||||||||||||||||
|
|
A number is even if, when divided by two, the remainder is 0. A number is odd if, when divided by 2, the remainder is 1.
Methods are great! |
|||||||||||||||
|
|
In response to ffpf - I had exactly the same argument with a colleague years ago, and the answer is no it doesn't work with negative numbers. The C standard stipulates that negative numbers can be represented in 3 ways: - 2's compliment - 1's compliment - "sign and magnitude". Checking like this:
will work for 2's compliment and sign and magnitude formats, but not for 1's compliment. However, I believe that the following will work for all cases:
edit: thanks to ffpf for pointing out that the text box was eating everything after my lessthan character! |
|||||
|
|
|
I'd say just divide it by 2 and if there is a 0 remainder, it's even, otherwise it's odd. Using the modulus (%) makes this easy. eg. 4 % 2 = 0 therefore 4 is even 5 % 2 = 1 therefore 5 is odd |
|||
|
|
|
|||||||||||||||||||||
|
|
One more solution to the problem
|
|||||||||||||||
|
|
I would build a table of the parities (0 if even 1 if odd) of the integers (so one could do a lookup :D), but gcc won't let me make arrays of such sizes:
So let's instead resort to the mathematical definition of even and odd instead. An integer n is even if there exists an integer k such that n = 2k. An integer n is odd if there exists an integer k such that n = 2k + 1. Here's the code for it:
Let C-integers denote the possible values of Now one might worry that for a given n in C-integers that the corresponding integer k might not exist within C-integers. But with a little proof it is can be shown that for all integers n, |n| <= |2n| (*), where |n| is "n if n is positive and -n otherwise". In other words, for all n in integers at least one of the following holds (exactly either cases (1 and 2) or cases (3 and 4) in fact but I won't prove it here): Case 1: n <= 2n. Case 2: -n <= -2n. Case 3: -n <= 2n. Case 4: n <= -2n. Now take 2k = n. (Such a k does exist if n is even, but I won't prove it here. If n is not even then the loop in A similar argument shows that if n is odd, there exists a k in C-integers such that n = 2k + 1. Hence the functions |
|||||||||||||
|
|
I know this is just syntactic sugar and only applicable in .net but what about extension method...
Now you can do the following
|
|||||
|
|
|
The bitwise method depends on the inner representation of the integer. Modulo will work anywhere there is a modulo operator. For example, some systems actually use the low level bits for tagging (like dynamic languages), so the raw x & 1 won't actually work in that case. |
|||
|
|
|
IsOdd(int x) { return true; } Proof of correctness - consider the set of all positive integers and suppose there is a non-empty set of integers that are not odd. Because positive integers are well-ordered, there will be a smallest not odd number, which in itself is pretty odd, so clearly that number can't be in the set. Therefore this set cannot be non-empty. Repeat for negative integers except look for the greatest not odd number. |
|||
|
|
|
Portable:
Unportable:
|
|||
|
|
|
In the "creative but confusing category" I offer:
A variant on this theme that is specific to Microsoft C++:
|
||||
|
|
|
For the sake of discussion... You only need to look at the last digit in any given number to see if it is even or odd. Signed, unsigned, positive, negative - they are all the same with regards to this. So this should work all round: -
The key here is in the third line of code, the division operator performs an integer division, so that result are missing the fraction part of the result. So for example 222 / 10 will give 22 as a result. Then multiply it again with 10 and you have 220. Subtract that from the original 222 and you end up with 2, which by magic is the same number as the last digit in the original number. ;-) The parenthesis are there to remind us of the order the calculation is done in. First do the division and the multiplication, then subtract the result from the original number. We could leave them out, since the priority is higher for division and multiplication than of subtraction, but this gives us "more readable" code. We could make it all completely unreadable if we wanted to. It would make no difference whatsoever for a modern compiler: -
But it would make the code way harder to maintain in the future. Just imagine that you would like to change the text for odd numbers to "is not even". Then someone else later on want to find out what changes you made and perform a svn diff or similar... If you are not worried about portability but more about speed, you could have a look at the least significant bit. If that bit is set to 1 it is an odd number, if it is 0 it's an even number. On a little endian system, like Intel's x86 architecture it would be something like this: -
|
|||||||
|
|
If you want to be efficient, use bitwise operators ( |
|||||
|
done. |
|||
|
|
|
Here is an answer in Java:
|
||||
|
|
|
Reading this rather entertaining discussion, I remembered that I had a real-world, time-sensitive function that tested for odd and even numbers inside the main loop. It's an integer power function, posted elsewhere on StackOverflow, as follows. The benchmarks were quite surprising. At least in this real-world function, modulo is slower, and significantly so. The winner, by a wide margin is an or ( | ) approach, and is nowhere to be found elsewhere on this page.
For 300 million loops, the benchmark timings are as follows. 3.962 the | and mask approach 4.851 the & approach 5.850 the % approach For people who think theory, or an assembly language listing, settles arguments like these, this should be a cautionary tale. There are more things in heaven and earth, Horatio, than are dreamt of in your philosophy. |
|||
|
|
protected by Community♦ Oct 19 '11 at 22:54
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.