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!

link|improve this question

According to this thread on meta we are called Stackers, not overflowers. :) – Björn Pollex Mar 26 '11 at 10:44
@Space: editted :) – amit Mar 26 '11 at 10:47
Why is this tagged C? In C unsigned int is guaranteed to have 16 or more ints; you need unsigned long with 32 or more bits. – pmg Mar 26 '11 at 13:44
feedback

4 Answers

up vote 4 down vote accepted

Use an std::bitset<25> from the header <bitset>. bitset can be indexed with [] and is a template, so it likely expands to just an unsigned int (or equivalent) with all operations inlined.

link|improve this answer
are the performance for it good? especially I need to check a lot of times if all bits are clear. – amit Mar 26 '11 at 10:41
@amit: it's a template class, so performance is likely the same as rolling your own or better. – larsmans Mar 26 '11 at 10:43
@amit I think it will probably compare favourably than your Java!! – David Heffernan Mar 26 '11 at 10:43
@amit, the any() method allows you to test this, I'd hazard there is little difference between calling this and a compare against 0. – Nim Mar 26 '11 at 10:44
@David, that might be the reason I don't do it in java. – amit Mar 26 '11 at 10:45
show 6 more comments
feedback

Have you considered std::bitset from <bitset> header file?

Example:

#include <iostream>
#include <bitset>

int main() {
        std::bitset<25> bits(146);
        std::cout << bits << std::endl;

        //using operator[] to access individual bit manually!
        for(size_t i = 0 ; i < bits.size() ; ++i)
           std::cout << bits[i] << " ";
        return 0;
}

Output:

0000000000000000010010010
0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Note: bits[0] is the least significant bit, while bits[bits.size()-1] is the most significant bit!

Online demo : http://ideone.com/3sSF0

link|improve this answer
feedback

consider a bitset instead.

link|improve this answer
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 <bitset> in the standard library.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.