Re: bit operations and parity
- From: Ian Shef <invalid@xxxxxxxxxxxxx>
- Date: Wed, 29 Jul 2009 19:21:57 GMT
Mayeul <mayeul.marguet@xxxxxxx> wrote in
news:4a708393$0$9973$426a74cc@xxxxxxxxxxxx:
RVic wrote:<snip>
Anyway, if all you want to do is to check for even parity, you needOr a table lookup could be used. There are only 256 values in the table.
neither. All you need to do is count the number of 1's in a byte and
check this number is even.
(On a side note, I know of no direct way to do that in Java.
boolean even = true;
for(int i = 0; i < 8; i++) {
if((theByte & (1 << i)) != 0) {
even = !even;
}
}
Maybe?)
The table could be computed offline and stored in the source code, or the
table could be computed at initialization (perhaps by using the counting
routine that you showed above). Also, I suspect that there may be faster
ways to count. Depending upon how the jvm is implemented, having (1 << i) in
the loop may be inefficent. It may be more efficient to do
if ((theByte & 1) != 0)
as the test, and
theByte >>= 1 ;
for the shift at the end of each iteration. Only one shift is needed per
iteration, so there are no questions about whether the processor has a barrel
shifter.
I realize that you were not trying for speed, and that I have now drifted
well off topic.
--
Mayeul
.
- Follow-Ups:
- Re: bit operations and parity
- From: Eric Sosman
- Re: bit operations and parity
- References:
- bit operations and parity
- From: RVic
- Re: bit operations and parity
- From: Eric Sosman
- Re: bit operations and parity
- From: RVic
- Re: bit operations and parity
- From: Mayeul
- bit operations and parity
- Prev by Date: Want to preserve the thread
- Next by Date: Re: Generic type cast involving wildcard type
- Previous by thread: Re: bit operations and parity
- Next by thread: Re: bit operations and parity
- Index(es):
Relevant Pages
|