I was recently asked in an interview how to set the 513th bit of a char[1024] in C, but I'm unsure how to approach the problem. I saw How do you set, clear and toggle a single bit in C?, but how do I choose the bit from such a large array?
|
|
||||
| show 1 more comment |
...making certain assumptions about character size and desired endianness. EDIT: Okay, fine. You can replace |
|||||||
|
|
|||
|
|
|
You have to know the width of characters (in bits) on your machine. For pretty much everyone, that's 8. You can use the constant Numbering bits from the left, with the 2⁷ bit in a[0] being bit 0, the 2⁰ bit being bit 7, and the 2⁷ bit in a[1] being bit 8, this gives:
There are many sane ways to number bits, here are two:
You could also number from the other end of the array (treating it as one very large big-endian number). |
||||
|
Small optimization: The / and % operators are rather slow, even on a lot of modern cpus, with modulus being slightly slower. I would replace them with the equivalent operations using bit shifting (and subtraction), which only works nicely when the second operand is a power of two, obviously. x / 8 becomes x >> 3 |
|||
|
|
|
Depending on the desired order (left to right versus right to left), it might change. But the general idea assuming 8 bits per byte would be to choose the byte as. This is expanded into lots of lines of code to hopefully show more clearly the intended steps (or perhaps it just obfuscates the intention):
Then the bit position would be computed as:
Then set the bit (assuming the goal is to set it to 1 as opposed to clear or toggle it):
|
||||
|
|
|
When you say 513th are you using index 0 or 1 for the 1st bit? If it's the former your post refers to the bit at index 512. I think the question is valid since everywhere else in C the first index is always 0. BTW
|
|||
|
|
char[1024]is an array of 1024 bytes; the 513th bit would be in the middle of the 64th byte, but it seems very unlikely that's what you're talking about – Michael Mrozek Oct 13 '11 at 17:03