Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for interesting and clever uses of bitmasks. I've commonly seen them used to store collections of flags (thanks to K&R, and Rochkind), but I'd like to see examples of other clever uses.

For example, I once heard of someone storing a chessboard in a 64 bit integer, and bitmasking it to get certain pieces of information. Thinking of it now, I don't think you can do that much with this representation, because at best you could store vacancy of a square, not which piece it is. I don't recall exactly what this person was using the structure for, but I can imagine others have seen similarly clever uses for bitmasks.

I realize this should be a community wiki but I don't know how to set that.

share|improve this question
1  
Unfortunately "list all X" questions are not fitting for Stack Overflow. Please consult the faq for more information. – Lasse V. Karlsen Jul 14 '11 at 0:36
@Bean: see the "Bitboard" article on Wikipedia, and the references it links to, for further information on using bit representations for chess boards. – Matthew Slattery Jul 14 '11 at 0:43
for the record, this question is about a specific software paradigm (unique to the profession), and it's not chatty, and only arguably open-ended, in that I'm looking for specific answers. So the faq doesn't help me in deciding whether this question is appropriate. Many other stack-sites I've visited allow such questions, so it was my mistake not knowing that such questions are not allowed here. – Bean Jul 14 '11 at 0:52

closed as not constructive by Lasse V. Karlsen Jul 14 '11 at 0:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Here's one that I've referred to when making a Poker Odds Calculator: http://www.suffecool.net/poker/evaluator.html

share|improve this answer

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