2

Possible Duplicates:
Count the number of set bits in an integer
Best algorithm to count the number of set bits in a 32-bit integer?

That's an exam question and that is all I have - "Count the number of bits that are "on" in a byte" "On" means 1, I assume. Do I need to create a BitArray, randomly populate it and then iterate through it or is there a different way?

Community
  • 1
  • 1
Max
  • 157
  • 2
  • 11

2 Answers2

8

Using BitArray might be efficient but you could also do

byte b = ... ;

int count = Convert.ToString(b,2).ToCharArray().Count(c => c=='1');
Bala R
  • 107,317
  • 23
  • 199
  • 210
1

Is this a interview question?

For a byte the fastest way would be to pre-compute an array such that a[i] = number of bits in i - the memory overhead is negligible.

Ophir Yoktan
  • 8,149
  • 7
  • 58
  • 106