Tagged Questions

3
votes
3answers
490 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
5answers
280 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 iterate through each …
2
votes
1answer
82 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
3answers
448 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
5answers
228 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 …
1
vote
2answers
85 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
315 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. …
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 = 20000000; …
0
votes
3answers
263 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 …
0
votes
1answer
245 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 If I type, in a …
0
votes
6answers
447 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; //defines the range …