Tagged Questions

A bit Vector stores an array of single bit values (0,1) usually in a memory-efficient (i.e. packed) way. Typical operations on a bit vector are access to single bits boolean operations between two bit vectors (AND, OR, XOR, NOT) vector-like operations (append/prepend, insertion of bits) shift ...

learn more… | top users | synonyms

12
votes
1answer
239 views

Asymptotically optimal way to find the sum of three elements of an array closest to a given number

In his answer to this question, John Feminella says: It's possible to do this sub-quadratically if you get really fancy, by representing each integer as a bit vector and performing a fast ...
7
votes
6answers
1k views

java: sparse bit vector

Are there any well-known libraries in Java for sparse bit vectors? (And are there guidelines for how sparse is useful to use them vs. java.util.BitSet?)
6
votes
2answers
117 views

C++ Fast Bitset Short-Circuit Bitwise Operations

A demo problem: Given two std::bitset<N>s, a and b check if any bit is set in both a and b. There are two rather obvious solutions to this problem. This is bad because it creates a new ...
5
votes
3answers
140 views

How to calculate the number of positive bits without using any shifts?

During a job interview I had some time ago I was asked to calculate the number of positive (i.e. set to "1") bits in a bitvector-structure (like unsigned integer or long). My solution was rather ...
4
votes
3answers
343 views

bitwise operations on vector<bool>

what's the best way to perform bitwise operations on vector<bool>? as i understand, vector<bool> is a specialisation that uses one bit per boolean. I chose vector<bool> for memory ...
4
votes
2answers
375 views

how to implement a really efficient bitvector sorting in python

Actually this is an interesting topic from programming pearls, sorting 10 digits telephone numbers in a limited memory with an efficient algorithm. You can find the whole story here What I am ...
3
votes
2answers
68 views

Data structure to manipulate long strings of bits

In Python, what is the best data structure of n bits (where n is about 10000) on which performing the usual binary operations (&, |, ^) with other such data structures is fast?
3
votes
1answer
89 views

Explain the use of a bit vector for determining if all characters are unique

I am confused about how a bit vector would work to do this (not too familiar with bit vectors). Here is the code given. Could someone please walk me through this? public static boolean ...
3
votes
2answers
4k views

Why BitVector 32 structure is more efficient than BitArray?

What is the difference between BitArray and BitVector 32 structure and what are the advantages of BitVector 32 structure over BitArray? Why is the BitVector 32 structure more efficient than BitArray? ...
1
vote
2answers
100 views

Use of term rewriting in decision procedures for bit-vector arithmetic

I am working on a project whose focus is the use of term rewriting to solve/simplify fixed-size bit-vector arithmetic problems, which is something useful to do as a prior step to some decision ...
1
vote
1answer
83 views

Bit alignment, 8-bools-in-1

I'm trying to compile the following code: union Bool { bool b[8] : 8; // (1) bool b0,b1,b2,b3,b4,b5,b6,b7 : 1; }; However the line (1) doesn't compile, whats the syntax for bit aligning an ...
1
vote
1answer
101 views

When should I use a BitVector32?

I am working on a project where at a certain moment I need to show for one month which days are still available. There is a function that calculates which days are available. My colleagues said:"Oh we ...
1
vote
5answers
2k views

C/C++ Bit Array or Bit Vector

I am learning C/C++ programming & have encountered the usage of 'Bit arrays' or 'Bit Vectors'. Am not able to understand their purpose? here are my doubts - Are they used as boolean flags? Can ...
1
vote
4answers
219 views

Bit operation equivalent of pop function in PERL(remove MSB)

In Perl, is there a bitwise operator that acts like >>, but removes the most significant bit? Sort of like how the >> operator is somewhat like the shift() function, I'm looking for a bit ...
1
vote
4answers
1k views

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 of how to do this in Python. They should be able to be from 4 bits to 20 bits. I have never worked ...
1
vote
3answers
617 views

What does the CreateMask function of BitVector32 do?

What does the CreateMask() function of BitVecto32 do? I did not get what a Mask is. Would like to understand the following lines of code. Does create mask just sets bit to true? // Creates and ...
1
vote
4answers
122 views

How would you query an array of 1's and 0's chars from a database?

Say you had a long array of chars that are either 1 or 0, kind of like a bitvector, but on a database column. How would you query to know what values are set/no set? Say you need to know if the char ...
0
votes
3answers
124 views

bit vectors in c++

Recently I heard about bit vectors, but i cant really find any useful info or tutorials on this topic. Can you please suggest a book or a quick tutorial on how to implement your own bit vector ...
-3
votes
1answer
108 views

Convert Bitvector64.Section to Bitvector32

I have created the mysec variables for BitVector64. For the version less than 8 I would like to generate the value using the BitVector32 static BitVector64.Section mySect1; static ...