I'm talking about this:
If we have the letter 'A' which is 77 in decimal and 4D in Hex. I am looking for the fastest way to get D.
I thought about two ways:
Given x is a byte.
x << 4; x >> 4
x %= 16
Any other ways? Which one is faster?
Thanks.
|
4
|
I'm talking about this: If we have the letter 'A' which is 77 in decimal and 4D in Hex. I am looking for the fastest way to get D. I thought about two ways: Given x is a byte.
Any other ways? Which one is faster? Thanks. |
||||
|
|
|
I always use |
||
|
|
|
Single AND operation can do it.
|
||
|
|
|
|
x = x & 15 |
||||||||||
|
|
|
It will depend on on the architecture to some extent - shifting up and back down on an ARM is probably the fastest way - however the compiler should do that for you. In fact, all of the suggested methods will probably be optimized to the same code by the compiler. |
||
|
|
|
Brevity is nice - explanations are better :)
|
||||||||
|
|
|
There are many good answers and some of them are technically the right ones. In a broader scale, one should understand that C/C++ is not an assembler. Programmer's job is to try to tell to the compiler the intention what you want to achieve. The compiler will pick the best way to do it depending on the architecture and various optimization flags. x &= 0x0F; is the most clear way to tell the compiler what you want to achieve. If shifting up and down is faster on some architecture, it is the compiler's job to know it and do the right thing. |
||