Tagged Questions

7
votes
3answers
136 views

How to improve performance of this counting program?

Given a file looks like this: 1440927 1 1727557 3 1440927 2 9917156 4 The first field is an ID which is in range(0, 200000000). The second field represents a type , which is in range(1, 5). And ...
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; ...
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) { ...
0
votes
3answers
74 views

If I have an array of keys M, and an array of targets N, how can I verify that M[i] exists in N before searching it?

Like the title says, I'm trying to find elements of M that exist in the large constant array N. Most of the time, no element of M will exist in N, so the vast majority of searches done on M are a ...