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;
...
6
votes
6answers
676 views
algorithm: gigantic number of very sparse bit arrays, which encoding to use
EDIT TWO Because my "append only" is obviously confusing people, I explain below what I mean here by "append only".
I've got a special need and the most important concerns are:
in-memory
very low ...
0
votes
6answers
335 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 ...