I can do it with two integer variables :
I'll call a row/column with all ones set 'complete'First, clear all the 1s that are not in either a complete row or column:
Then pick a row and a column that are not complete, say row 3 two passes (up to 32 rows and column columns...)
bool matrix[5][5] = {1, 0, 1(, 1, 0}, {0, 1, 1, 1, 0}, {1, 1, 1, 1, 1}, {1, 0based). (or -, 1if there aren't any). If both are -, 1, 1}, {1, then you're done since the whole thing is complete. Note that if you have one none-complete row1, then you have a non-complete column1, and vice-versa.Clear all 1s that are not in 1, 1}int CompleteRows = ~0;int CompleteCols = ~0;// Find the selected first 0for (int row and column, and are not in a complete = 0; row and column < 5; ++row) for (using the values in the selected int col = 0; col < 5; ++col) CompleteRows &= ~(!matrix[row][col] << row); CompleteCols &= ~(!matrix[row][col] << col);for (int row and column as keys to which rows/columns were complete):
Now clear the selected = 0; row and column:
And you're done.< 5; ++row) for (int col = 0; col < 5; ++col) matrix[row][col] = (CompleteRows & (1 << row)) && (CompleteCols & (1 << col));
