Hello Stackers
I'm afraid to admit, I haven't used C++ for a while now [java is just too good.. :) ] but i'm afraid I have to now, and I'm a bit rusty.
I need to have a bitmap, and I do care about performance, my bitmap size will be no longer then 25 bits.
I was thinking about using unsigned int, but I am afraid I do not remember how it is implemented in c/c++
Is unsigned int implemented as a regular binary number?
I am also open to any other suggestions for a bitmap.
thanks in advance for the help!
| ||||
|
feedback
|
|
Use an | |||||||||||
feedback
|
|
Have you considered std::bitset from Example:
Output:
Note: Online demo : http://ideone.com/3sSF0 | ||||
|
feedback
|
|
You should be able to use an integer type for a bit map, assuming it has enough bits for you. However, there is a | |||
|
feedback
|
C? InCunsigned intis guaranteed to have 16 or more ints; you needunsigned longwith 32 or more bits. – pmg Mar 26 '11 at 13:44