I want to convert a Character to a 7 bit even parity. Can you please suggest me, how to implement this?
|
feedback
|
|
Too bad you can't use the x86 JPO instruction (Jump if Parity Odd) ;-) Depending on the amount of data you want to handle it might be faster if you first set up a translation table than to check/handle character by character.
(you might want to test this code thoroughly, I haven't)
| |||
feedback
|
|
Here's a C version:
I'm sure translation to PHP would be easy, but I'll avoid embarrassing myself. Inspired by this Bit Twiddling Hack. | |||
|
feedback
|
|
At the risk of downvotes:
This will count the 1's, and add an extra 1 (if odd) or a 0 (if even) to the first bit. Then copy the other 7 bits into the return. This will leave you with a string representation of the 7 bit, even parity of the byte. To those more experienced then I, does this look right? Example output: 11111111 01000001 00111010 10111011 | |||
|
feedback
|