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
3answers
326 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
686 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
375 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
783 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)
{
...
1
vote
3answers
390 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
3answers
790 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 ...
0
votes
6answers
334 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 ...
-1
votes
1answer
123 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 ...