Tagged Questions
7
votes
1answer
252 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;
...
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
4answers
119 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 ...
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
5answers
692 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
2answers
97 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
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.
...
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
2answers
463 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
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
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
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
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
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
1answer
334 views
Using Flags in my own C# control such as the settings in UserAccountControl in Active Directory
I have been working with System.DirectoryServices for a while in a project involving Active Directory. I am curious on the implementation of the UserAccountControl property to control the attributes ...
0
votes
3answers
365 views
Can I serialize a BitArray to XML?
I have a business class which I need to serialize to xml. It has a BitArray property.
I have decorated it with [XmlAttribute] but the serialization is failing with
To be XML serializable, types ...
0
votes
5answers
1k 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 ...
-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 ...