8皇后对角线检查

时间:2017-12-26 00:20:52

标签: c n-queens

目前我正在创建一个程序,要求用户将皇后放置为8皇后问题。现在我几乎已经创建了这个程序,但我仍然坚持如何对角程序进行检查。

这是(未完成的)代码:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int check_r_c(int**chess,int*p,int N,int M)
{
    int times=0;
    for(int i=0; i<N; i++)
    {
        times=0;
        for(int j=0; j<M; j++)
        {
            if(chess[i][j] == 1)
                times++;

        }
        if( times != 1)
        {
            *p=1;
            return 1;
        }
    }
    for(int j=0; j<M; j++)
    {
        times=0;
        for(int i=0; i<N; i++)
        {
            if(chess[i][j] == 1)
                times++;
        }
        if( times != 1)
        {
            *p=1;
            return 1;
        }
    }
    *p=0;
    return 0;
}
int main()
{
    int N,M;
    printf("Give the number of rows: \n");
    scanf("%d",&N);
    printf("Give the number of columns: \n");
    scanf("%d",&M);
    int**chess = malloc(N*sizeof(int));
    int i,j,ch;
    int*ptr;
    ptr=&ch;
    if(chess==NULL)
    {
        printf("\nMemory cannot be allocated\n");
        return 1;
    }
    for(i=0; i<N; i++)
    {
        if((chess[i] = malloc(M*sizeof(int)))==NULL)
        {
            printf("\nMemory cannot be allocated\n");
            return 1;
        }
    }
    for(int i=0; i<N; i++)
        for(int j=0; j<M; j++)
            chess[i][j]= 0;
    for(int k=0; k<N; k++)
    {
        printf("Give the position of the %d queen\n",k+1);
        scanf("%d",&i);
        scanf("%d",&j);
        if(chess[i][j] == 1)
        {
            printf("You cant put 2 queens in the same place!!!\n" );
            return 0;
        }
        chess[i][j] = 1;
    }
    check_r_c(chess,ptr,N,M);
    if(ch == 0)
        printf("Solution is correct!");
    else
        printf("Solution is incorrect!");
    for(int i=0; i<N; i++)
        free(chess[i]);
    free(chess);
}

1 个答案:

答案 0 :(得分:1)

检查放置后的对角线的逻辑是(p,q)是检查所有i的所有位置(p + i,q + i),其中p + i和q + i都是董事会内部。对于消极方面,请使用(p-i,q-i)。