Tagged Questions
The bitsets tag has no wiki summary.
6
votes
6answers
3k views
Boolean[] vs. BitSet: Which is more efficient?
What is more efficient in terms of memory and CPU usage — an array of booleans or a BitSet? Specific BitSet methods are not used, only get/set/clear (==, =, Arrays.fill respectively for an array).
4
votes
4answers
314 views
Easy way to convert a string of 0's and 1's into a character? Plain C
I'm doing a steganography project where I read in bytes from a ppm file and add the least significant bit to an array. So once 8 bytes are read in, I would have 8 bits in my array, which should equal ...
4
votes
4answers
3k views
When to use STL bitsets instead of separate variables?
In what situation would it be more appropriate for me to use a bitset (STL container) to manage a set of flags rather than having them declared as a number of separate (bool) variables?
Will I get a ...
3
votes
1answer
727 views
BitSet memory usage in Scala
I would like to know what is the memory usage of BitSet in Scala.For example, if I do:
var bitArray:BitSet=new BitSet(10)
bitArray.add(0)
bitArray.add(2)
bitArray.add(4)
bitArray.add(6)
...
3
votes
1answer
2k views
Setting boost dynamic_bitset from a string
Dynamic bitset
I have a use case where i need to populate
boost::dynamic_bitset<unsigned char> , from a std::string buffer.
Can you suggest as to how to go about this. So I need to come up ...
3
votes
3answers
1k views
How to write a std::bitset template that works on 32 and 64-bit
Consider the following code
template<unsigned int N> void foo(std::bitset<N> bs)
{ /* whatever */ }
int main()
{
bitset<8> bar;
foo(bar);
return 0;
}
g++ complains ...
2
votes
5answers
50 views
flag bitset, avoiding collisions, C
I've got a flag-holding integer that has an existing set of possible flags:
#define MAIL_ADDR_FROM 0x0001 /* address field contains the from address */
#define MAIL_ADDR_TO 0x0002 /* address ...
2
votes
1answer
80 views
STL bitset problem
I have a template class "HEADER_FILE" that has a variable bitset<>
using std::bitset<REG_SIZE>;
using std::bitset<REG_SIZE_2>;
template <int regSize=REG_SIZE>class Foo{
...
1
vote
1answer
169 views
How do I change the value of a dynamic_bitset?
I am using C++ boost's dynamic_bitset.
I have already allocated a variable and I just want to change its value - to construct it anew from an 'unsigned long' like from the constructor, but I don't ...
1
vote
6answers
1k views
How best to implement BCD as an exercise?
I'm a beginner (self-learning) programmer learning C++, and recently I decided to implement a binary-coded decimal (BCD) class as an exercise, and so I could handle very large numbers on Project ...
0
votes
2answers
309 views
is it possible to convert bitset<8> to an array of characters of integers?
I have bitset<8> v8 and its value is something like "11001101", something in binary, how can we convert it to an array of characters or integers in c++?
0
votes
3answers
590 views
How to subtract two bitsets in c++
i have 2 bitsets each one storing 100 bits. I'm trying to simply subtract with '-', but I always get a compilation error at this point. How do you subtract 2 bitsets in c++?
Thanks in advance
0
votes
1answer
254 views
dynamic_bit set print?
std::string charBuff = "11010";
dbitset = boost::dynamic_bitset<unsigned char> (charBuff);
for (boost::dynamic_bitset<>::size_type i = 0; i < dbitset.size(); ++i) {
std::cout ...