Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
530 views

Python equivalent to Java's BitSet

Is there a Python class or module that implements a structure that is similar to the BitSet?
9
votes
3answers
4k views

BitSet to and from integer/long

If I have an integer that I'd like to perform bit manipulation on, how can I load it into a java.util.BitSet? How can I convert it back to an int or long? I'm not so concerned about the size of the ...
7
votes
5answers
573 views

Bit field vs Bitset

I want to store bits in an array (like structure). So I can follow either of the following two approaches Approach number 1 (AN 1) struct BIT { int data : 1 }; int main() { BIT a[100]; ...
6
votes
3answers
129 views

Is std::bitset bit-order portable?

Does C++ say anything on bit-ordering? I'm especially working on protocol packet layouts, and I'm doubting whether there is a portable way to specify that a certain number be written into bits 5,6,7, ...
5
votes
5answers
374 views

Binary Serialization of std::bitset

std::bitset has a to_string() method for serializing as a char-based string of 1s and 0s. Obviously, this uses a single 8 bit char for each bit in the bitset, making the serialized representation 8 ...
5
votes
1answer
237 views

in bitset, can i use “to_ulong” for a specific range of bits?

hi im working on something that demands me to get access to specific/range of bits. i decided to use bitset because it is easy to get access to specific bits but can i extract a whole range of bits?
5
votes
1answer
1k views

Very Compact Bitarray in Java

I'm looking for a very compact way of storing a dense variable length bitarray in Java. Right now, I'm using BitSet, but it seems to use on average 1.5*n bits of storage space for a bit vector of size ...
4
votes
2answers
209 views

Resizing a java BitSet

I sub classed the BitSet class to add some additional methods. One of the is called "fold". It splits the BitSet in 2 halves and "combines" them with an or. (increases Information density) This works ...
4
votes
4answers
482 views

bitset for more than 32 bits?

I need to use bit flags with more than 32 bits (33 to be exact right now). I tried and find std::bitset doesn't handle more than 32 bits (ulong). Do I have to use vector or there's a way to make ...
3
votes
5answers
64 views

How can i convert bitset into short in c++?

if i have a bitset<16> bits(*iter) and a my short how i can assign this bist to my short? short myShort = ??bits?? It's possible to convert a bitset<16> to short?
3
votes
3answers
125 views

96-bit long bitfield with non-octet aligned subfields

I need a 96-bit long structure that I can place custom bit fields into. The fields' lengths are all over the place, 8, 3, 26, 56. It's important that they remain these exact lengths (with one ...
3
votes
1answer
97 views

bitsets in C++ using VS2010 (another)

I just asked another question about bitsets which turns out to be a bug in VS2010 bitsets in C++ using VS2010 However upon changing the constructor I used for the bitset I've run into another problem ...
3
votes
2answers
491 views

Converting from BitSet to Byte array

I have picked up this example from here which converts BitSet to Byte array. public static byte[] toByteArray(BitSet bits) { byte[] bytes = new byte[bits.length()/8+1]; for (int i=0; ...
3
votes
1answer
240 views

Define a large bitset in C++

In my program I need to check if I have already generated a value in a set of 2.5*10^9. I expect to generate about the half of the set and need to have a fast way to check and update it. The bitset ...
3
votes
3answers
249 views

boost::dynamic_bitset concat performance

I want to concat a big bitset with a smaller one in a way that wont kill performance. Currently my application spends 20% of cpu time in just the following code: boost::dynamic_bitset<> ...
3
votes
5answers
524 views

How does one store a vector<bool> or a bitset into a file, but bit-wise?

How to write bitset data to a file? The first answer doesn't answer the question correctly, since it takes 8 times more space than it should. How would you do it ? I really need it to save a lot of ...
3
votes
1answer
731 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
5answers
547 views

C++: Define bitset size at initialization?

I want to make a bitset in C++. I did a bit of research. All examples I found where like this: bitset<6> myBitset; // do something with it But I don't know the size of the bitset when I ...
3
votes
3answers
323 views

how to represent an integer array using java.util.BitSet?

I need to represent an array of integers using BitSet. Can somebody explain me the logic required to do this ?
3
votes
1answer
128 views

Output integral to ostringstream as binary?

I just realized that one can use bitset to output binary data to a stream based on the (fixed) size of the bitset. What's the least-extra-syntax way to output binary data to a stream using integrals? ...
3
votes
8answers
819 views

I need to create a very large array of bits/boolean values. How would I do this in C/C++?

Is it even possible to create an array of bits with more than 100000000 elements? If it is, how would I go about doing this? I know that for a char array I can do this: char* array; array = ...
2
votes
3answers
45 views

Shifting a Java BitSet

I am using a java.util.BitSet to store a dense vector of bits. I want to implement an operation that shifts the bits right by 1, analogous to >>> on ints. Is there a library function that ...
2
votes
2answers
76 views

Reading a Binary File into a bitset or vector<bool>

How do I read a binary file into a bitset or vector<bool>? The binary file will vary in length. Is there a better container for this? I am new to C++ though experienced as a programmer.
2
votes
1answer
51 views

Putting output of the bitset member function count into a vector is slow

Here is a part of my C++ code where I have problems: std::bitset<64>a; std::bitset<64>b; std::bitset<64>c; int bit_count=0; std::vector<int> vec(SIZE,0); for ...
2
votes
1answer
89 views

C++: dynamic_bitset

I'm having trouble initializing my dynamic_bitset. I have this code: for(int j=(data1.length()-1); j>=0; j--){ x[j] = data1[j]; } Where data1 is a 32-bit binary number being read in ...
2
votes
2answers
64 views

bitsets binary AND operation

I wrote the following lines: std::bitset<4> bitvec; //bitset 0000 std::bitset<4> addition; //bitset 0000 addition.set(0); //setting the least significant bit std::cout << ...
2
votes
4answers
132 views

how to make a bit-set/byte-array conversion in c

Given an array, unsigned char q[32]="1100111...", how can I generate a 4-bytes bit-set, unsigned char p[4], such that, the bit of this bit-set, equals to value inside the array, e.g., the first byte ...
2
votes
1answer
44 views

Control per bit binding to large bitset

Lets say I got a large bitset (class doesn't matter, can be bool[100]) and I got 10x10 rectangles of colors black and white which I want to bind to each individual bit in my bitset. I also want not ...
2
votes
1answer
142 views

bitsets in C++ using VS2010

I can't figure out if I'm doing anything wrong here, hopefully someone here can enlighten me. I have a class Flags, this is an extremely simplified version but I declare a bitset class Flags { ...
2
votes
4answers
112 views

How to over come Bitset error

if i write, int a=10,b=12; int sub = b-a; std::bitset<8*sub> bits(bitMask); it is giving me an error saying error C2975: '_Bits' : invalid template argument for 'std::bitset', ...
2
votes
2answers
66 views

C++ Novice regarding Bitset operations with strings

I'm currently learning about bitset, and in one paragraph it says this about their interactions with strings: "The numbering conventions of strings and bitsets are inversely related: the rightmost ...
2
votes
6answers
284 views

Is the use of std::vector<bool> objects in C++ acceptable, or should I use an alternative?

I'm working with a user-defined quantity of bits (I'm holding a three-dimensional array of bits, so the size increases cubically - assume no less then 512 bits), and need to flip them each ...
2
votes
1answer
207 views

Fast bitset append?

I'm looking for a bitset implementation with fast bit appending, where several bits can be efficiently appended in one go. e.g. char value = 31; char n_bits = 5; fast_bitset bits; bits.append(value, ...
2
votes
3answers
266 views

Bitset operation in c++

I am trying to pass bitset parameter to the below function but I am not able to: error: no matching function for call to search(std::bitset<100000000ul>&, int, unsigned int, unsigned int) ...
2
votes
3answers
192 views

Conversion from C++ to Java(Returning more than one value in java)

Not getting the char value: #define XL 33 #define OR 113 #define NOR 313 #define TN 344 int to_bits(int critn,char *mask) { unsigned int x; int begin; if (critn < XL) begin = 1; else if ...
2
votes
2answers
173 views

OR operation in Java(BitSet.class)

How to Write a program which will take 001010101110000100100...., 011100010001000011000...., 000000000010000000000100.... as input (bit) and the output will be OR of these 3. OR = 0 0 = 0, 0 1 ...
2
votes
4answers
301 views

efficient way of iterating over true bits in std::bitset?

Ciao all, Is there a way of iterating over a (possibly huge) std::bitset that is linear in the number of bits that are set to true? So I want to prevent having to check every single position in the ...
2
votes
4answers
550 views

What is the performance of STL bitset::count() method?

I searched around and could not find the performance time specifications for bitset::count(). Does anybody know what it is (O(n) or better) and where to find it? EDIT By STL I refer only to the ...
2
votes
0answers
66 views

Fastest ways to set and get a bit

I'm just trying to develop ultra-fast functions for setting and getting bits in uint32 arrays. For example, you can say "set bit 1035 to 1". Then, the uint32 indexed with 1035 / 32 is used with the ...
2
votes
3answers
203 views

Good library for bitsets or bitarrays

Hallo all, I'm looking for some good library, that works with bitsets or bitarrays. Anybody knows something better (or not worse in all cases) then boost::dynamic_bitset? No matter if the library is ...
2
votes
3answers
413 views

question about bitset in c++

i have tried to implement following code #include <iostream> #include <bitset> using namespace std; int main(){ //bitset<4>mybits; //cout<<mybits<<endl; int ...
2
votes
3answers
1k views

Concatenate boost::dynamic_bitset or std::bitset

what is the best way to concatenate 2 bitsets? For example i've got boost::dynamic_bitset<> test1( std::string("1111") ); boost::dynamic_bitset<> test2( std::string("00") ); they ...
2
votes
4answers
582 views

java.util.BitSet — set() doesn't work as expected

Am I missing something painfully obvious? Or does just nobody in the world actually use java.util.BitSet? The following test fails: @Test public void testBitSet() throws Exception { BitSet b = ...
2
votes
1answer
341 views

Grails: GORM and BitSets?

I don't see anything in the official documentation about unsupported persistence data types, so I'm working under the assumption that types available in the Groovy language should be handled. However, ...
2
votes
4answers
2k views

writing a BitSet to a file in java

I have a BitSet and want to write it to a file- I came across a solution to use a ObjectOutputStream using the writeObject method. I looked at the ObjectOutputStream in the java API and saw that you ...
2
votes
8answers
4k views

Convert Bytes to bits

I'm working with java. I have a byte array (8 bits in each position of the array) and what I need to do is to put together 2 of the values of the array and get a value. I'll try to explain myself ...
2
votes
5answers
3k views

Convert Byte Array into Bitset

I have a byte array generated by a random number generator. I want to put this into the STL bitset. Unfortunately, it looks like Bitset only supports the following constructors: A string of 1's and ...
1
vote
2answers
48 views

Is it possible to create a vector of bitsets?

I am trying to create a vector of bitsets in C++. For this, I have tried the attempt as shown in the code snippet below: vector<bitset<8>> bvc; while (true) { bitset<8> ...
1
vote
3answers
127 views

Understanding this bitset implementation (C++)

I just got this frame for a sudoku solver, but I don't understand the syntax they've used and how I'm supposed to proceed. They call it a bitset, but upon searching for it I found nothing similar. ...
1
vote
7answers
152 views

How can I have exactly 2 bits in memory?

I should be able to store a value in a data structure that could go from 0 to 3.. so I need 2 bits. This data structure I will be great 2 ^ 16 locations. So, i want to have 2 ^ 16 * 2 (bits). In C + ...

1 2 3