mirror of
https://github.com/krahets/hello-algo.git
synced 2026-01-12 00:04:24 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
96 lines
3.1 KiB
C
96 lines
3.1 KiB
C
/**
|
|
* File : n_queens.c
|
|
* Created Time: 2023-09-25
|
|
* Author : lucas (superrat6@gmail.com)
|
|
*/
|
|
|
|
#include "../utils/common.h"
|
|
|
|
#define MAX_SIZE 100
|
|
|
|
/* Backtracking algorithm: N queens */
|
|
void backtrack(int row, int n, char state[MAX_SIZE][MAX_SIZE], char ***res, int *resSize, bool cols[MAX_SIZE],
|
|
bool diags1[2 * MAX_SIZE - 1], bool diags2[2 * MAX_SIZE - 1]) {
|
|
// When all rows are placed, record the solution
|
|
if (row == n) {
|
|
res[*resSize] = (char **)malloc(sizeof(char *) * n);
|
|
for (int i = 0; i < n; ++i) {
|
|
res[*resSize][i] = (char *)malloc(sizeof(char) * (n + 1));
|
|
strcpy(res[*resSize][i], state[i]);
|
|
}
|
|
(*resSize)++;
|
|
return;
|
|
}
|
|
// Traverse all columns
|
|
for (int col = 0; col < n; col++) {
|
|
// Calculate the main diagonal and anti-diagonal corresponding to this cell
|
|
int diag1 = row - col + n - 1;
|
|
int diag2 = row + col;
|
|
// Pruning: do not allow queens to exist in the column, main diagonal, and anti-diagonal of this cell
|
|
if (!cols[col] && !diags1[diag1] && !diags2[diag2]) {
|
|
// Attempt: place the queen in this cell
|
|
state[row][col] = 'Q';
|
|
cols[col] = diags1[diag1] = diags2[diag2] = true;
|
|
// Place the next row
|
|
backtrack(row + 1, n, state, res, resSize, cols, diags1, diags2);
|
|
// Backtrack: restore this cell to an empty cell
|
|
state[row][col] = '#';
|
|
cols[col] = diags1[diag1] = diags2[diag2] = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Solve N queens */
|
|
char ***nQueens(int n, int *returnSize) {
|
|
char state[MAX_SIZE][MAX_SIZE];
|
|
// Initialize an n*n chessboard, where 'Q' represents a queen and '#' represents an empty cell
|
|
for (int i = 0; i < n; ++i) {
|
|
for (int j = 0; j < n; ++j) {
|
|
state[i][j] = '#';
|
|
}
|
|
state[i][n] = '\0';
|
|
}
|
|
bool cols[MAX_SIZE] = {false}; // Record whether there is a queen in the column
|
|
bool diags1[2 * MAX_SIZE - 1] = {false}; // Record whether there is a queen on the main diagonal
|
|
bool diags2[2 * MAX_SIZE - 1] = {false}; // Record whether there is a queen on the anti-diagonal
|
|
|
|
char ***res = (char ***)malloc(sizeof(char **) * MAX_SIZE);
|
|
*returnSize = 0;
|
|
backtrack(0, n, state, res, returnSize, cols, diags1, diags2);
|
|
return res;
|
|
}
|
|
|
|
/* Driver Code */
|
|
int main() {
|
|
int n = 4;
|
|
int returnSize;
|
|
char ***res = nQueens(n, &returnSize);
|
|
|
|
printf("Input board size is %d\n", n);
|
|
printf("Total queen placement solutions: %d\n", returnSize);
|
|
for (int i = 0; i < returnSize; ++i) {
|
|
for (int j = 0; j < n; ++j) {
|
|
printf("[");
|
|
for (int k = 0; res[i][j][k] != '\0'; ++k) {
|
|
printf("%c", res[i][j][k]);
|
|
if (res[i][j][k + 1] != '\0') {
|
|
printf(", ");
|
|
}
|
|
}
|
|
printf("]\n");
|
|
}
|
|
printf("---------------------\n");
|
|
}
|
|
|
|
// Free memory
|
|
for (int i = 0; i < returnSize; ++i) {
|
|
for (int j = 0; j < n; ++j) {
|
|
free(res[i][j]);
|
|
}
|
|
free(res[i]);
|
|
}
|
|
free(res);
|
|
|
|
return 0;
|
|
}
|