what I want to do is check an array of bools to see if 3 or more of them have been set to true. The only way I can think to do this is using a if statement for each possible combination of which there is lots because there are ten bools. Dose anybody have any suggestions on how best to do this.
|
|
The much easier way would be to loop through the array:
|
|||
|
|
|
This would be the easiest way:
Only problem is it keeps counting even after it has found 3. If that is a problem, then I would use sharptooth's method. side note I've decided to fashion an algorithm in the style of
For your purpose, you would use it like this:
|
|||||
|
|
If it's an array, what you do is loop over it and count the number of trues. But I'm afraid you mean a bitpattern of some kind, right? |
|||
|
|
|
Why not just count the number of trues and then do something if the number is 3 or higher:
|
|||
|
|
|
You can loop through and build a bit-mask representation of the array, then you can compare against up to
This assumes that you're looking for patterns, not just want to count the number of |
|||
|
|
|
Just loop through the array counting the number of bools set to true.
Then call it like so
|
|||
|
|
|
Store the bools as bits in an integer. Then apply one of the bit twiddling hacks. |
|||
|
|
|
Whenever you are setting an array element into TRUE value, you can increment a global counter. This will be the simplest way. At any point in your code, the global array will tell you the number of TRUE elements in the Array. Another thing - if you are keeping upto 32 bool values, you can use a single int variable. int is 32 bits (in Win32) and you can store 32 bool.
|
|||||
|