Tagged Questions
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;
...
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
5answers
693 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
2answers
376 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
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
5answers
784 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
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
votes
1answer
124 views
Encoding value from the list as a BitArray
I have a list of N colors. I need to represent any of those values as a BitArray. If N = 129 to 255 than, obviously, each color should be represented as a BitArray with Length 8. It is similar to ...