Top "Bitarray" questions

A bit array (also known as bitmap, bitset, bit string, or bit vector) is an array data structure that compactly stores bits.

How do I represent and work with n-bit vectors in Python?

In an assignment I am currently working on we need to work with bit vectors, but I am very unsure …

python bit-manipulation bitarray bitvector
How to store a bit-array in C++?

What's the best way to store a bit array in C++ (no Boost, just standard containers), representing, for example, a …

c++ stl bitmap containers bitarray
Most efficient way to reverse the order of a BitArray?

I've been wondering what the most efficient way to reverse the order of a BitArray in C#. To be clear, …

c# bitarray
Converting String type binary number to bit in java

I have a question about converting String type binary number to bit and write in the txt file. For example …

java bit bits bitarray
Bit Array to String and back to Bit Array

Possible Duplicate Converting byte array to string and back again in C# I am using Huffman Coding for compression and …

c# string bytearray bitarray huffman-code
Function convert Hex String to BitArray C#

I created the following function which will do as requested (convert HEX string to BitArray). I am not sure about …

c# bitmap hex endianness bitarray
Counting bits set in a .Net BitArray Class

I am implementing a library where I am extensively using the .Net BitArray class and need an equivalent to the …

.net algorithm bitarray
How To Write A String Of Binary To File C#

I Have A String Of Binary Number Like temp = "0101110011" And I Want To Save That As File this Temp Have 10 …

c# bitarray binarywriter
python bit array (performant)

I'm designing a bloom filter and I'm wondering what the most performant bit array implementation is in Python. The nice …

python performance bitarray bloom-filter
How do I implement a bit array in C / Objective C

iOS / Objective-C: I have a large array of boolean values. This is an inefficient way to store these values – at …

objective-c c ios core-foundation bitarray