The bitarray tag has no wiki summary.
1
vote
2answers
69 views
Sieve of Eratosthenes bit array
I am trying to find primes using Sieve of Eratosthenes with bit arrays, but I am using unsigned int array. I need to be able to generate upto 2,147,483,647 primes. My code works and can generate ...
1
vote
1answer
77 views
Is BitArray faster in C# for getting a bit value than a simple conjuction with bitwise shift?
1). var bitValue = (byteValue & (1 << bitNumber)) != 0;
2). using System.Collections.BitArray with a Get( bitNumber ) method
What is faster?
In what situations for the .NET projects ...
1
vote
2answers
80 views
Combine 2 numbers in a byte
I have two numbers (going from 0-9) and I want to combine them into 1 byte.
Number 1 would take bit 0-3 and Number 2 has bit 4-7.
Example : I have number 3 and 4.
3 = 0011 and 4 is 0100.
Result ...
0
votes
1answer
65 views
Sieve of Eratosthenes using a bit array
I have a bit array prime[]of unsigned int. I wish to implement a Sieve of Eratosthenes using this array, by having each bit represent a number n. That is, given n, the array element that holds the bit ...
0
votes
1answer
154 views
How to create a bit array objective C
I want to make a bit array or bit vector of items I have in an array so that I can create a binary fingerprint to compare to an object's fingerprint.
Here is an example:
Base fingerprint...
All ...
-1
votes
1answer
86 views
How can I get the offsets of all set bits in a bitarray?
In C, Ruby or PHP, how can I get the offsets of all set bits in an bitarray. E.g.:
Bitarray: 1 0 0 1 0
Offset: 5 4 3 2 1
Yields 2 and 5.
10001 => {1,5}
11 => {1,2}
1001001 => {1,4,7}
...
3
votes
4answers
188 views
Fast bitarray in OCaml
Yet another synthetic benchmark: Sieve of Eratosthenes
C++
#include <vector>
#include <cmath>
void find_primes(int n, std::vector<int>& out)
{
std::vector<bool> ...
0
votes
2answers
398 views
C# - Shifting and reversing the order of bits in a byte array
I am trying to get the correct int out of an array of bytes.
The bytes is read from a RFIDTag via POS for .Net.
(Acctually I need 18 bits)
In binary the byte array is as follows:
00001110 11011100 ...
2
votes
2answers
566 views
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 decompression of some text from here
The code in there builds a huffman tree to ...
1
vote
1answer
355 views
matlab packing bits into byte array
in Matlab, I'm trying to pack arbitrary bit-length unsigned integers (e.g., an array of 3-bit integers) into an array of uint8. Given the tip here, I can generate code that works for "small" arrays ...
0
votes
4answers
234 views
Convert a byte into 8 bits with true or false flags
I am trying to read a byte and convert into a bit. I am trying to create a flagging system.
So byte 3 would be raise the first two flags as true. However When I try and convert it just passes the ...
0
votes
3answers
278 views
Convert BitArray to String with same Length
I'm utilizing the algorithm of this question: Convert List<boolean> to String (the choosen answer)
But I'm dealing with the length of the BitArray when this is reversed. I mean if my BitArray ...
2
votes
1answer
93 views
Copying a bitarray in a larger one (right justified)
I have to create a new bitarray larger of an existing one (one element more at the beginning) and copy it at the end of the new bitarray.
I have done this so far, but looks pretty ugly:
BitArray ...
1
vote
2answers
233 views
bitarray from a biginteger and back [closed]
I have just quickly coded these 2 functions to create a bitarray from a biginteger and viceversa.
Here it is along with a quick test, which returns:
1234235612312312311
...
4
votes
3answers
84 views
Load a (0/1) string into a bit array
What is the smartest way to load a string like "10101011101010" directly into a new bit array? (not a byte array)
(The bits should remain in the same order as in the list.)
3
votes
1answer
93 views
Write a BigInteger variable into a BitArray and vice-versa
I am using the BigInteger type from System.Numerics.
For instance:
Dim Mult17 As BigInteger = BigInteger.Parse("1453453452342347")
Questions:
Given a BigInteger, how do I convert it into a ...
2
votes
2answers
671 views
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 we have String like "0101011" and want to convert to bit type "0101011"
then write in to ...
0
votes
1answer
187 views
bitarray.to01() doesn't return only 0s and 1s in string (Python)
I use the library bitarray to manage my bits conversion and to write a binary file in Python. The bitarray.to01() before writing to file is of length 4807100171. For some reason I can't make sense of, ...
1
vote
2answers
134 views
BitArray Thread Safety
I am looking for information regarding the thread-safety of concurrent writes to the System.Collections.BitArray class.
Specifically, consider the following contrived example:
BitArray bits = new ...
0
votes
2answers
41 views
Why are most machines not able to address individual bits? [closed]
I was reading about bit array and this question came up in my mind.
Why are most machines not able to address individual bits? Is it because of the DMA and because it would be too (memory/circuits) ...
0
votes
0answers
35 views
How to watch the BitArray collection in VS debugger?
As the title, I wonder a easy approach for me to know the contents in a BitArray.
Thanks.
0
votes
2answers
352 views
How to get the bytes of a file?
Simple question I know, what I want to do is be able to get the bytes of a file to use to add those bytes to an bit array, which I can then use to write to a file named bytes.exe and launch it. I know ...
1
vote
1answer
165 views
Read binary file with header using bitarray's from file in Python
I wrote a program that uses bitarray 0.8.0 to write bits to a binary file. I would like to add a header to this binary file to describe what's inside the file.
My problem is that I think the method ...
0
votes
2answers
230 views
How do i creat a 2D bit array in java where data stored in each cell is of size 1 bit on hard drive?
What I really want to accomplish is as follows:
1) Creat a table or packed 2D bit array, 2 columns--rows can be any lenght.
Give column names so I can reference them.
3) I can then set the individual ...
1
vote
3answers
710 views
Convert a byte or int to bitset
I have the following:
int num=Integer.parseInt(lineArray[0]);
byte numBit= num & 0xFF;
Is there any very simple way to convert numBit to a bit array? Or even better, is there a way to bypass ...
6
votes
3answers
279 views
Fast code for searching bit-array for contiguous set/clear bits?
Is there some reasonably fast code out there which can help me quickly search a large bitmap (a few megabytes) for runs of contiguous zero or one bits?
By "reasonably fast" I mean something that can ...
0
votes
2answers
3k views
Converting C# byte to BitArray
Is there any predefined function available to convert a byte into BitArray?
One way would be to inspect every bit of the byte value and then perform bitwise operation. I was wondering if there is any ...
0
votes
1answer
171 views
How to create Large Bit array in cuda?
I need to keep track of around 10000 elements of an array in my algorithm .So for this I need boolean for each record.If I used char array to keep track of 10000 arrays (as 0/1),it would take up lot ...
2
votes
3answers
136 views
Performance of small sets in Python
I am looking for the most efficient way to represent small sets of integers in a given range (say 0-10) in Python. In this case, efficiency means fast construction (from an unsorted list), fast query ...
3
votes
2answers
281 views
How to fill a BitArray so that copying it to a byte will work
Please consider this (non-homework) exercise of converting a slash-notation (e.g. 24, 30) to a subnet mask.
When I copy my BitArray to my byte[], the internal ordering of the BitArray leads to ...
1
vote
2answers
158 views
Ruby: Convert a bitarray to an integer
I am trying to convert a bit array, such as [0,0,1,0].to_i = 2 or [0,1,0,1].to_i = 5.
What possible ways are there to do this in Ruby?
1
vote
2answers
480 views
Bitvector32 and Bitarray in C#
I wanted to know whether there are bitwise operators for Bitvector32 that operate in O(1) time. I am currently using BitArray of large sizes and using Bitwise And,Or and Not which operate in O(size ...
2
votes
1answer
175 views
what am i doing wrong in this bloom filter implementation?
I have this bit table for a segmented bloom filter. Here every column is managed by a single hash function.
unsigned char bit_table_[ROWS][COLUMNS];//bit_table now have 8*ROWS*COLUMNS bits
unsigned ...
0
votes
3answers
449 views
why does dynamic memory allocation fail after 600MB?
i implemented a bloom filter(bit table) using three dimension char array it works well until it reaches at a point where it can no more allocate memory and gives a bad_alloc message. It gives me this ...
1
vote
5answers
561 views
Quickly creating 32 bit hash code uniquely identifying a struct composed of (mostly) primitive values
EDIT: 64 or 128 bit would also work. My brain just jumped to 32bit for some reason, thinking it would be sufficient.
I have a struct that is composed of mostly numeric values (int, decimal), and 3 ...
4
votes
2answers
592 views
bitarray package for Python 2.7 on Windows?
I need an easy to install version of bitarray for Python 2.7 on 32 bit Windows, for this project py2exe are not possible, so I need an exe / msi / egg that is simple for people to install, has anyone ...
1
vote
2answers
994 views
BitArray to integer issue
public static int getIntegerFromBitArray(BitArray bitArray)
{
var result = new int[1];
bitArray.CopyTo(result, 0);
return result[0];
}
// Input A) 01110
// Output A) 14
// Input B) 0011
// ...
1
vote
3answers
675 views
BinaryReader - Reading a Single “ BIT ”?
Case :
Again trying to capture packets through my NIC,
I have developed 2 Extensions to use in capturing variable number of bits
public static string ReadBits ( this BinaryReader Key , int ...
0
votes
3answers
774 views
Converting binary data to bytes in c#
we have a text file containing binary values.
say, we have a file "file.txt",it contains binary datat, say 11001010
the size of this file is 8 bytes.
but we want these 8 bytes to be read as bits i.e. ...
4
votes
3answers
444 views
C bit array macros, could anyone explain me how these work?
I'm trying to implement sieve of erathostenes for school project and I've decided to do so using bit arrays. While I was searching for materials, I came across these 3 macros, they work flawlessly, ...
3
votes
3answers
1k views
BitArray returns bits the wrong way around?
This code:
BitArray bits = new BitArray(new byte[] { 7 });
foreach (bool bit in bits)
{
Console.WriteLine(bit ? 1 : 0);
}
Gives me the following output:
11100000
Shouldn't it be the other ...
0
votes
2answers
540 views
Reading MP3 Frameheader - assigning bit values to variables
I am learning visual basic .net and I am attempting to translate some java source code to a vb.net project. The project reads mp3 details and then splits the file accurately according to the ...
7
votes
3answers
168 views
How to improve performance of this counting program?
Given a file looks like this:
1440927 1
1727557 3
1440927 2
9917156 4
The first field is an ID which is in range(0, 200000000). The second field represents a type , which is in range(1, 5). And ...
2
votes
2answers
6k views
Auto increment in MongoDB to store sequence of Unique User ID
I am making a analytics system, the API call would provide a Unique User ID, but it's not in sequence and too sparse.
I need to give each Unique User ID an auto increment id to mark a analytics ...
0
votes
2answers
252 views
Operations on BitArray [duplicate]
Possible Duplicate:
How i can convert BitArray to single int?
How can I read an integer to a BitArray(6) (assuming it can be contained) and how to convert a BitArray(6) to unsigned/signed ...
4
votes
3answers
688 views
Measuring efficiency of Huffman coding with Python bitstring
I have the following string that I would like to Huffman-encode and store efficiently into a bit array:
>>> print sequence
GTCAGGACAAGAAAGACAANTCCAATTNACATTATG|
The frequencies of the ...
8
votes
4answers
2k views
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 volume allocation bitmap?
I thought std::vector<bool> was a great idea, but ...
2
votes
2answers
512 views
using bitarray to grab bits and build new value
If i take a uint value = 2921803 (0x2C954B), which is really a 4 byte package (4B 95 2C 00)
and i want to get the 16 least significant bits of the byte version of it using bitarray, how would i go ...
0
votes
3answers
163 views
Use bit arrays?
Imagine there's a fixed and constant set of 'options' (e.g. skills). Every object (e.g. human) can either have or not have any of the options.
Should I maintain a member list-of-options for every ...
7
votes
2answers
2k views
How do I create bit array in Javascript?
What is the best way of implementing a bit array in JavaScript?
