首页 > 其他 > 详细

四皇后问题

时间:2014-07-30 20:20:54      阅读:238      评论:0      收藏:0      [点我收藏+]

递归

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#define NUM 4
int total = 0;

void print_board(int *board)
{
    printf("\n");
    for (int i = 0; i < NUM; i++)
    {
        for (int j = 0; j < NUM; j++)
        {
            printf("%4d", board[j] == i ? 1 : 0);
        }
        printf("\n");
    }
}
int check(int *board, int col)
{
    for (int i = 0; i < col; i++)
    {
        if (board[i] == board[col] || abs(board[i] - board[col]) == abs(i - col))
        {
            return 0;
        }
    }
    return 1;
}
void queen(int *board, int col)
{
    if (col == NUM)
    {
        print_board(board);
        total++;
        return;
    }
    for (int row = 0; row < NUM; row++)
    {
        board[col] = row;
        if (check(board, col))
        {
            queen(board, col + 1);
        }
    }
}

int main(int argc, char **argv)
{
    printf("total = %d\n", total);
    int board[NUM];
    for (int i = 0; i < NUM; i++)
    {
        board[i] = 0;
    }
    queen(board, 0);
    printf("total = %d\n", total);
    getchar();
    return 0;
}

bubuko.com,布布扣

四皇后问题,布布扣,bubuko.com

四皇后问题

原文:http://www.cnblogs.com/liuzhijiang123/p/3878531.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!