A bit array (also known as a bitmap, a bitset, or a bitstring) is an array data structure that compactly stores individual bits (boolean values).
1
vote
0answers
40 views
Creation large of bitstring
I need to create large bitstring and get pointer to memory where it is stored (requirement of API I'm using). Is there a library to do it in C++?
I've looked on boost::dynamic_bitset, std::vector and ...
0
votes
0answers
30 views
Is it possible to use an array of bits or something like a std::bitset in CUDA?
I have an input array that is given to a kernel. Each thread works with one value of the array and either changes the value or doesn't change it at all according to an algorithm.
I would like to find ...
0
votes
1answer
59 views
Can the intersection of int[] array and BitSet be faster?
In Java, I have a BitSet bigger in size than an array (100000 > 2000). Array contains positive integers from range [1; 100000]. I want to intersect given array and bitset. Obviously intersection ...
0
votes
0answers
30 views
Why is deviceID getting set to an empty string by the time I print it?
This one is driving me crazy:
I defined these two functions to convert between bytes and int resp. bytes and bits:
def bytes2int(bytes) : return int(bytes.encode('hex'), 16)
def bytes2bits(bytes) : ...
1
vote
3answers
29 views
Java BitSet strange behavior
Based on the Javadoc, the following code should print 6. However, it outputs 3 for no apparent reason.
import java.util.*;
public class BitSetStrangeness{
public static void main(String[] args){
...
0
votes
1answer
15 views
BitSet initialized with byte[] returns unexpected bits
I'm writing a test for a bit reader class. I have a ByteBuffer that is the source for the reader and I initialize it with 32 random bytes. Then I create a BitBuffer with the ByteBuffer as initial.
...
1
vote
2answers
96 views
How to convert a Seq[Byte] into an Array[Boolean] representing each bit in Scala
Is there a better way to convert a sequence of Bytes into an Seq[Boolean] where each element represents a bit from the Byte sequence?
I'm currently doing this, but byte2Bools seems a little too ...
0
votes
2answers
77 views
using map type creates gcc error: expected unqualified-id before ‘for’
I am new to linux, using terminal in Ubuntu virual box environment. I cannot figure out what and why these errors are happening, and they don't seem to match a missing ';' or #define conflict.
Here ...
0
votes
2answers
73 views
What would be the fastest way to intersect two bitsets into a new BitSet in Java?
Is there something faster in time than this:
// say we alread have BitSet bs1 and bs2
BitSet bs3 = (BitSet) bs1.clone();
bs3.and(bs2);
Maybe convert to ints and add as numbers and then convert back ...
1
vote
2answers
56 views
Memory size of Java 32-bit system BitSets
How to compute the memory of new BitSet(n) in C++.
What memory takes the new BitSet(1024) in Java.
But it seems the formula for Java is different. I want to compute the memory spent for new ...
13
votes
2answers
763 views
Why is the std::bitset<8> variable unable to handle 11111111?
Why is this program showing the following output ?
#include <bitset>
#include <cstdio>
#include <iostream>
int main()
{
std::bitset<8> b1(01100100); ...
-1
votes
1answer
107 views
Java BitSets writing to file [duplicate]
I am working on Huffman Compression algorithm. I have the code for each character. For example
f=1100
d=111
e=1101
b=101
c=100
a=0
Now in order to achieve compression I need ...
1
vote
2answers
66 views
Converting boolean to BitSet in Java
So I before had this:
public static final boolean opaqueCubeLookup = new boolean[4096];
But I found out that BitSet it much better at managing memory, so I changed it to this:
public static final ...
1
vote
3answers
86 views
Constructing BitSets in Scala from a predicate?
Suppose I want to construct a BitSet containing all integers from 0 until n satisfying some predicate f: Int => Boolean.
I could write something like
BitSet((0 until n):_*).filter(f)
which of ...
0
votes
2answers
75 views
Get all Indexes of the set bits in a BitSet
I'm looking for a fast algorithm with gives me all the indexes of the set bits in a BitSet object.
This is slow:
BitSet bitSet = ...
Collection<Integer> indexes = new ...
0
votes
4answers
106 views
Compare int and bitset in c++
How can I compare bitset with an integer ? Or more generally work with integer operator:
something like this :
#include <iostream>
#include <iomanip>
#include <bitset>
using ...
0
votes
3answers
249 views
How to create SortedSet (e.g. TreeSet) for elements of type BitSet
I have a number (power(2,k)) of BitSet objects and I want to store them in a sorted set. I use the code:
Set S= new TreeSet<>();
But getting error "java.lang.ClassCastException: java.util.BitSet ...
5
votes
2answers
156 views
Is there a trivial way to get the 2's complement of an std::bitset<N>
I was using std::bitset<N> in my program and needed to find the least significant set bit and did the trivial calculation as below :
int num = 5;
int res = num & (-num);
After which the ...
0
votes
1answer
103 views
Converting Bytes To BitSets
I am trying to figure out a way of taking data from a file and I want to store every 4 bytes as a bitset(32). I really have no idea of how to do this. I have played about with storing each byte from ...
0
votes
1answer
131 views
Create a dynamic bitset in standard C++?
I feel like I'm just hoping that they can, but can a vector access bitset member functions?
For instance, can I do something like.
vector<bool> myvector;
myvector.count();
myvector.test(1);
...
3
votes
3answers
102 views
Is there a deque-like bitset in C++?
I am trying to store a very large search mask with a filter of bits.
Both std::vector<bool> and std::bitset<n> store their bool representations as bits, which is different from a normal ...
0
votes
1answer
64 views
How to solve ClassCastException when using BitSet as key in Java Map
I am using:
Map <BitSet,Double> Mymap=new TreeMap<>();
When I try to call:
Mymap.contains(someBitSetObject)
I am getting following run time error:
Exception in thread "main" ...
0
votes
3answers
126 views
Java bit comparison, bitset?
I've got the word 'bitset' stuck in my head as the solution to my problem but I think I might be getting myself confused.
I've got a list of hex values that indicate certain conditions, such as:
...
1
vote
1answer
37 views
Seeking efficient associative bitset hash
Suppose you have an ordered sequence of bitsets b1, b2, b3, ..., bN.
Is there an efficient bitwise operator hash calculation which can be used to generate hashes which is also associative?
In other ...
0
votes
2answers
71 views
Problems with small C++ bitset code
I have tried to write the following code into my compiler and compile it:
#include <iostream>
#include <bitset>
using namespace std;
void binary(int a)
{
cout << ...
0
votes
1answer
143 views
Variable size bitset
I am practising a question on array in which I have to find unique elements. Now for this my logic is to find the max element in the array and define the bitset for that. But problem is bitset need ...
-3
votes
1answer
52 views
can't create instance of bit-row
my class Row contains its data in a bitset. the class is implmented with templates, but it's not possible to create a new instance of Row object in my main-program.
Row.h
#ifndef ROW_H_
#define ...
-3
votes
1answer
86 views
How to check if a bit in a bitset is zero or one? [closed]
I have a bitset and I want to check whether a bit at a specific index is zero or one.
0
votes
1answer
50 views
realize Bitset function whose param is long
The set() function of BitSet is set(int param).I am trying to realize Bitset function by sending a long type.Are there any API or tutorial? thanks.
BitSet mobiphoneUsers = new BitSet();
...
1
vote
1answer
213 views
What is the C# equivalent of BitSet of Java?
My requirements are simple:
Be able to define dimensions of bit array, i.e: 5 bytes.
bool Get(bitIndex: int)
Set(bitIndex: int)
Is there a c# equivalent which provides similar functionality to ...
8
votes
3answers
689 views
Java BitSet and byte[] usage
I have this application where I should use BitSet class heavily and write to a file bit by bit. I know I can't write bits to a file, so first I convert the BitSet object to byte array and write as ...
0
votes
0answers
147 views
Efficient way to find most significant bit in boost::dynamic_bitset?
Is there an efficient way to find the index of the most significant bit that is set in a dynamic_bitset?
Or do I have to iterate through all bits using find_first (which finds the first least ...
0
votes
1answer
43 views
equivalent of .Find_first method for bitsets in visual studio
The title pretty much summarizes it.
In gcc, you can use the .Find_first() method on a bitset to get the position of the first significant bit. Is there any equivalent in Visual Studio?
I know you ...
-1
votes
2answers
50 views
Accessing Bitset present inside a struct C++
I have a structure that looks like this :
struct bf_t {
bitset<250000> h0;
};
I want to know how to allocate memory for this struct and how to access h0 in my main() .
I tried doing this:
...
0
votes
2answers
78 views
Behavior change from Rebol 2 to Rebol 3 for empty BITSET! testing; how to test EMPTY?
In Rebol 2 you could check for an empty bitset with EMPTY?
>> empty? make bitset! #{00}
== true
In Rebol 3 (Build 21-Feb-2011/0:44:24) this is not the case.
>> empty? make bitset! ...
2
votes
3answers
53 views
How in the PARSE dialect does one seek TO or THRU a CHARSET?
First I'll state my intention: I'm trying to write a parse rule for potentially obfuscated 10-digit phone numbers. So imagine cases like "callmeNOW...555___555____5555!"
The place I thought to start ...
0
votes
3answers
76 views
Why, when trying to populate an array, am I getting a NullPointerException?
I'm trying to Populate an array of BitSets with information about an int array
//ar is a SIZE*SIZE 1-D int array, SIZE is a constant
//decare BitSet array
BitSet bs[] = new BitSet[SIZE];
...
1
vote
1answer
188 views
Huge binary matrix (logical AND on array of bitsets) Java performance
We have a java service that computes some logical operations on a huge binary matrix (10 000 x 10 000). This matrix is array of bitsets. The most important operation is an intersection (logical AND) ...
1
vote
2answers
219 views
Bit vector and bitset
What is the difference between bit-vector and bitset container of stl ? Please explain.
To my understanding bitset is the implementation of the concept of bitvector am I right or wrong? What are the ...
4
votes
2answers
2k views
BitArray and BitSet in Java
I am a beginner programmer and I recently came across a data structure BitArray while reading one book (Programming Pearls, to be more precise). I wanted to learn and practice a bit on BitArray as I ...
0
votes
1answer
203 views
convert bitset to ASCII String
How do you convert back a binary to string?
std::string test1("Hello");
std::bitset<8> test2;
test2 = std::bitset<8>(test1.c_str()[0]);
std::cout << test2 << std::endl;
...
1
vote
2answers
71 views
Why are Bitsets implemented via Template Parameters [closed]
I understand that Bitsets can't be dynamically allocated because they are based on Template Parameters.But why were bitsets implemented that way?
Thanks
2
votes
2answers
373 views
How to do SystemVerilog-style bit vector slice assignment in C++?
I am porting some SystemVerilog code to SystemC/C++. I am using std::bitset to represent bit vectors, but I can see already it falls short of providing methods to access a slice.
For example, if I ...
0
votes
1answer
61 views
std::bitset redeclaration
I would like to substract an integer from a number that my bitset represents. However, I don't know how to either a) copy a bitset to another bitset, or, b) re-instantiate a bitset:
bitset<7> ...
0
votes
1answer
128 views
c++; Is bitset the solution for me?
I am writing a program and using memcpy to copy some bytes of data, using the following code;
#define ETH_ALEN 6
unsigned char sourceMAC[6];
unsigned char destMAC[6];
char* txBuffer;
....
...
0
votes
1answer
108 views
Filling an int array with bits in a bitset.
#define CHAR_BIT 8
union
{
float input; // assumes sizeof(float) == sizeof(int)
int output;
} data;
data.input = 122.5;
bitset<sizeof(float) * CHAR_BIT> bits(data.output);
...
2
votes
3answers
481 views
keyPressed event slow on first repeat
Okay so I am sorry for this being a really weird question but it is driving me insane.
I handle my WASD movement for my game via:
Action ClassWASDKeyPressed = new ClassWASDKeyPressed();
Action ...
0
votes
4answers
123 views
Generate a random BitSet with n 1's [duplicate]
Possible Duplicate:
Randomly pick k bits out of n from a Java BitSet
Is there an easy way to generate a random BitSet of size n*n (e.g. 64) and exactly n (e.q 8) number of 1's in a random ...
0
votes
1answer
172 views
How to get bitset BLOBs from Mysql select ID queries?
It would be absolutely great if the following thing was possible:
Let's say I've got a 'document' mysql table, with a document 'id' and a few other columns:
CREATE TABLE document(id INT ...
1
vote
5answers
66 views
Null Pointer Exception with an array of bitsets
could someone explain to me why the following results in a Null pointer Exception? And how to set a value for bitarray[0]?
BitSet[] bitarray;
bitarray= new BitSet[10];
...



