Tagged Questions
The bitarray tag has no wiki summary.
7
votes
3answers
136 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 ...
7
votes
4answers
330 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 ...
7
votes
1answer
253 views
Has anyone released a more robust BitArray for .NET?
After struggling to make the .NET BitArray class work for my needs, I decided to look for a more robust open-source or commerical one on the web. To my surprise, I can't find a single one. I see ...
7
votes
9answers
5k views
Fastest way to calculate primes in C#?
I actually have an answer to my question but it is not parallelized so I am interested in ways to improve the algorithm. Anyway it might be useful as-is for some people.
int Until = 20000000;
...
6
votes
6answers
683 views
algorithm: gigantic number of very sparse bit arrays, which encoding to use
EDIT TWO Because my "append only" is obviously confusing people, I explain below what I mean here by "append only".
I've got a special need and the most important concerns are:
in-memory
very low ...
5
votes
2answers
297 views
How do I create bit array in Javascript?
What is the best way of implementing a bit array in JavaScript?
5
votes
1answer
91 views
How to split a BitArray
I need to split an BitArray (from std.bitmanip) into its halfs. Until now I've found out that slicing is not implemented, iterating over it and appending or assigning produces Out of range exception ...
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 ...
5
votes
5answers
12k views
Convert from BitArray to Byte
I have a BitArray with the length of 8, and I need a function to convert it to a byte. How to do it?
Specifically, I need a correct function of ConvertToByte
BitArray bit=new BitArray(new bool[]
...
4
votes
3answers
157 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 ...
4
votes
4answers
120 views
Efficient Datastructure for tags?
Imagine you wanted to serialize and deserialize stackoverflow posts including their tags as space efficiently as possible (in binary), but also for performance when doing tag lookups. Is there a good ...
4
votes
4answers
2k views
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 least eight bits are used for each element when only one is needed.
How can I ...
3
votes
3answers
47 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 ...
3
votes
3answers
170 views
Array of fixed-length BitArrays
I'm in trouble with a BitArray.
The goal is to simulate a stack of 8 80bit BitArrays, numbered from 0 to 7.
I just need to be able to access them by index, and so I think a simple array will be ...
3
votes
3answers
332 views
BitArray alternative for the .NET Micro Framework
Is there a BitArray alternative for the .NET Micro Framework?
I was thinking about simply using a bool[], but how can you convert it back
into a byte[] ?
In the full framework, considering "bits" is ...
3
votes
5answers
695 views
BitArray - Shift bits
I have a System.Collections.BitArray array (~3000 items) and I would like to shift all the bits to the left by 1. However the collection doesn't seem to support that operation (i.e. bitArray << ...
3
votes
4answers
442 views
What's a time efficient algorithm to copy unaligned bit arrays?
I've had to do this many times in the past, and I've never been satisfied with the results.
Can anyone suggest a fast way of copying a contiguous bit array from source to destination where both the ...
3
votes
2answers
377 views
Generating a good hash code (GetHashCode) for a BitArray
I need to generate a fast hash code in GetHashCode for a BitArray. I have a Dictionary where the keys are BitArrays, and all the BitArrays are of the same length.
Does anyone know of a fast way to ...
3
votes
3answers
1k views
Is there any simple way to concatenate two BitArray (C# .NET)?
I have
var previous = new BitArray(new bool[]{true});
var current = new BitArray(new bool[]{false});
I want to concatenate them. I have already tried:
var next = new BitArray(previous.Count + ...
2
votes
2answers
98 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 ...
2
votes
1answer
240 views
making a python bitarray from an integer - strange results!
I'm just starting to use the bitarray package in python, and trying to make a bitarray from an integer gives me really confusing results:
>>> import bitarray
>>> ...
2
votes
2answers
99 views
Turning bits into values
How does a computer know that (int x, y) x << y means shift over y bits? i dont mean the shift part. I mean the y part. Does the computer shift x by one and subtract one from y until y == 0? if ...
2
votes
3answers
87 views
Populating a set of checkboxes based on a file
I'm trying to figure out how to read a file (not created by my program), using a BinaryReader, and checking or unchecking a set of checkboxes accordingly.
I've managed to figure out that the ...
2
votes
2answers
195 views
Unset the most significant bit in a word (int32) [C]
How can I unset the most significant setted bit of a word (e.g. 0x00556844 -> 0x00156844)? There is a __builtin_clz in gcc, but it just counts the zeroes, which is unneeded to me. Also, how should I ...
2
votes
5answers
885 views
Comparing arbitrary bit sequences in a byte array in c
I have a couple uint8_t arrays in my c code, and I'd like to compare an arbitrary sequence bits from one with another. So for example, I have bitarray_1 and bitarray_2, and I'd like to compare bits 13 ...
2
votes
5answers
730 views
Optimizing bit array accesses
I'm using Dipperstein's bitarray.cpp class to work on bi-level (black and white) images where the image data is natively stored as simply as one pixel one bit.
I need to iterate through each and ...
2
votes
5answers
785 views
Is there a generic (type-safe) BitArray in .NET?
Is there a generic BitArray in .NET? I only found the non-generic one.
Can there be a generic BitArray? (i.e. would it be reasonable?)
Edit:
Maybe I should have said type-safe not generic.
...
2
votes
1answer
239 views
Does enumerating a BitArray cause lots of boxing/unboxing?
System.BitArray only implements the non-generic IEnumerable, which returns an Object for the IEnumerator.Current property. Does running a foreach over a BitArray - eg
foreach (bool b in bitArray)
{
...
2
votes
2answers
1k views
Is there something wrong with BitArrays in C#?
When I conpile this code:
BitArray bits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
BitArray moreBits = new BitArray(3);
bits[0] = true;
bits[1] = true;
bits[2] = true;
...
1
vote
1answer
34 views
how to model bitarrays in django?
What would be the best way to store a large bitarray within a django model (mysql backend)?
for example, how could i store this object:
import bitarray
bits = bitarray.bitarray('11000101010') #real ...
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
2answers
464 views
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, I don't want to inverse the Bitarray by calling .Not(), I want to reverse the order of the bits ...
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
3answers
1k views
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 the efficiency of the function, but my main problem now is that the Convert.ToInt64 ...
1
vote
4answers
357 views
Large bit arrays in C
Our OS professor mentioned that for assigning a process id to a new process, the kernel incrementally searches for the first zero bit in a array of size equivalent to the maximum number of ...
1
vote
3answers
393 views
Storing 4 bits from a byte in VB.Net
What is the best way to store 4 bits from a byte in VB.Net? Where best means:
Most straightforward method of storage from a Byte type.
The easiest to work with while performing bitwise operations.
...
1
vote
4answers
2k views
How to define and work with an array of bits in C?
I want to create a very large array on which I write '0's and '1's. I'm trying to simulate a physical process called random sequential adsorption, where units of length 2, dimers, are deposited onto ...
1
vote
3answers
791 views
Bit Array Equality
I need something a little more than the System.Collections.BitArray class in my application. Specifically, I need the bit array:
To be immutable
To implement equality using value semantics
I ...
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
2answers
279 views
What are some common uses for bitarrays?
I've done an example using bitarrays from a newbie manual. I want to know what they can be used for and what some common data structures for them (assuming that "array" is fairly loose terminology.)
...
1
vote
5answers
1k views
C# Prime Generator, Maxxing out Bit Array
(C#, prime generator)
Heres some code a friend and I were poking around on:
public List<int> GetListToTop(int top)
{
top++;
List<int> result = new List<int>();
...
0
votes
2answers
75 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 ...
0
votes
1answer
227 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
69 views
Operations on BitArray [closed]
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 ...
0
votes
3answers
97 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 ...
0
votes
1answer
156 views
C# BitArray and Int64
I'm implementing the Sieve of Eratosthenes algorithm using BitArray in C# 4. The code is:
cPrimesB = new BitArray((int)max, true); //in constructor
primes = new List<ulong>(); //in constructor ...
0
votes
2answers
125 views
How to set BitArray to set specfic Bits based on value?
How do I use BitArray to do a few things such the most basic, setting a value to bits, not just bits! I am starting to regret ever using this crap called BitArray.
Say I got bits such as this.
...
0
votes
1answer
95 views
Error when using CopyTo command with BitArrays
Starters: Here is the error that gets generated:
Destination array was not long enough. Check destIndex and length, and the array's lower bounds.
Code: C#, ASP.NET
Env: VS 2005
What I'm doing is ...
0
votes
2answers
129 views
python bitarray to and from file
I'm writing a large bitarray to a file using this code:
import bitarray
bits = bitarray.bitarray(bin='0000011111') #just an example
with open('somefile.bin', 'wb') as fh:
bits.tofile(fh)
...
0
votes
6answers
341 views
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 Java BitSet.Cardinality() method, i.e. a method which returns the number of bits set. I ...