1
vote
5answers
183 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 lik …
2
votes
5answers
228 views
Optimizing bit array accesses
Hi all,
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 i …
1
vote
5answers
289 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 …
1
vote
2answers
74 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 …
2
votes
1answer
71 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 (boo …
0
votes
3answers
234 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> r …
0
votes
1answer
219 views
Installing bitarray in Python 2.6 on Windows
I would like to install bitarray in Windows running python 2.6.
I have mingw32 installed, and I have C:\Python26\Lib\distutils\distutils.cfg set to:
[build]
compiler = mingw32
…
0
votes
6answers
398 views
Converting a range into a bit array
I'm writing a time-critical piece of code in C# that requires me to convert two unsigned integers that define an inclusive range into a bit field. Ex:
uint x1 = 3;
uint x2 = 9;
…
3
votes
3answers
411 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;
b …
3
votes
3answers
461 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(p …
1
vote
10answers
2k 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 …
