Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a way to find the bit that has been set the least amount of times from using only bit operations?

For example, if I have three bit arrays:

11011001

11100000  
11101101

the bits in position 3 and 5 are set to 1 in only 1 of the three vectors.

I currently have an o(n) solution where n is the number of bits in the bitarray, where I go through each bit in the bitarray and increment each time there is a 1, but for some reason I think there is a o(1) solution that I can use with few bitwise operations. Can anyone advise? Thanks.

share|improve this question
Are you always going to have 3 bit arrays, or can you have a lot more? – trutheality Jun 5 '11 at 1:27
it would be rare to have cases of more than 10 arrays – dustin ledezma Jun 5 '11 at 1:31
1  
or-ing the numbers will yield a zero for the bits that are set 0 times, like bit 1 in your example. I can't think of anything offhand for bits set once or more than once. – jcomeau_ictx Jun 5 '11 at 1:32
There may be a trick one can play based on the fact that you don't want to know the count, just which bit appears the least. But nothing specific is coming to me just now. – Hot Licks Jun 5 '11 at 1:42

4 Answers

up vote 4 down vote accepted

You can use a duplicate/shift/mask approach to separate the bits and maybe be a little faster than an iterative bit shift scheme, if the total number of values is limited.

Eg for each "bits" 8-bit value, assuming no more than 15 values:

bits1 = (bits >> 3) & 0x11;
bits2 = (bits >> 2) & 0x11;
bits3 = (bits >> 1) & 0x11;
bits4 = bits & 0x11;
bitsSum1 += bits1;
bitsSum2 += bits2;
bitsSum3 += bits3;
bitsSum4 += bits4;

Then, at the end, break each bitsSumN value into two 4-bit counts.

share|improve this answer
I'll add that you can easily extend the above to 16-bit, 32-bit, or 64-bit (or even wider, if your language has them) values, by simply using larger hex constants. And for more than 15 values you could do the operations in groups of 15, breaking the bitsSumN values apart into individual values after every 15 and summing those separately. Also, if the number of values is large and their width is less than a register, you can do several values simultaneously in one register, then combine the appropriate sums at the end. – Hot Licks Jun 5 '11 at 2:27

Another option is to reflect the bit array. In your example:

111
111
011
100
101
001
000
101

And then use the standard bit counting methods to count the number of bits set.

Doing this naively would most likely be slower than the normal approach, but you could try to adjust the algorithms to pull the bits from different words instead of the techniques they use. The fastest techniques look at multiple bits at a time, though, so would seemingly be difficult to optimize in your case.

share|improve this answer

if you're going to have 16 or less arrays, treat the bit patterns as hexadecimal numbers (instead of binary) and just add them together. but I'm afraid that it will still be less efficient than your o(n) solution. (and yes I realize that adding isn't a bitwise operation.)

share|improve this answer
In the askers example, you'd add D9 to E0 to get 1B9. How would that help? – Nick ODell Jun 5 '11 at 1:46
no, I'd add 0x11011001 to 0x11100000 to 0x11101101 and get 0x33212102 – jcomeau_ictx Jun 5 '11 at 1:49
basically, the same thing he's already doing – jcomeau_ictx Jun 5 '11 at 1:49

If you're going to have 15 items or fewer, I'd suggest that you start by distilling every group of three numbers into two, and then each group of fifteen into four. Something like:

  uint32 x0,y0,z0,x1,y1,z1, ... x4,y4,z4; // Input values
  uint32 even0,even1,...even4,odd0...odd4;
  uint lowereven,lowerodd,uppereven,upperodd;

  even0 = (x0 & 0x55555555) + (y0 & 0x55555555) + (z0 & 0x555555555);
  odd0 = ((x0>>1) & 0x55555555) + ((y0>>1) & 0x55555555) + ((z0>>1) & 0x555555555);
  ... then do likewise for even1...even4 and odd1...odd4

  lowereven = ((even0 & 0x333333333) + (even1 & 0x33333333) + (even2 & 0x33333333)...;
  lowerodd = ((even0 & 0x333333333) + (even1 & 0x33333333) + (even2 & 0x33333333)...;
  uppereven = ((even0 >> 2) & 0x33333333) + ((even1 >> 2) & 0x33333333) + ...;
  oddeven = ((odd0 >> 2) & 0x33333333) + ((odd1 >> 2) & 0x33333333) + ...;

After those operations, the four values will hold bit counts for all the bits. LowerEven will hold the counts for bits 0, 4, 8, 16, etc.; LowerOdd holds 1, 5, 9, etc.; UpperEven holds 2, 6, 10, etc.; UpperOdd holds 3, 7, 11, etc.

If one had more than 15 numbers, one could handle up to 255 numbers in groups of 15 by doing the above for each group, and then using eight statements to combine all the groups.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.