1. 程式人生 > >小甲魚c語言版:八皇后問題解決思路

小甲魚c語言版:八皇后問題解決思路

#include<stdio.h> 
	int count=0;
	int notDanger(int row,int j,int (*chess)[8]){
		int i,k,flag1=0,flag2=0,flag3=0,flag4=0,flag5=0;
		//判斷列方向
		for(i=0;i<8;i++){
			if(*(*(chess+i)+j)!=0 ){
			flag1=1;
			break;}
		}
		//判斷左上方
		for(i=row,k=j;i>=0&&k>=0;i--,k--){
			if(*(*(chess+i)+k)!=0 ){
			flag2=1;
			break;}
		}
		//判斷右下方
		for(i=row,k=j;i<8&&k<8;i++,k++){
			if(*(*(chess+i)+k)!=0 ){
			flag3=1;
			break;}
		}
		//判斷左下方
		for(i=row,k=j;i<8&&k>=0;i++,k--){
			if(*(*(chess+i)+k)!=0 ){
			flag4=1;
			break;}
		}
		//判斷右上方
		for(i=row,k=j;i>=0&&k<8;i--,k++){
			if(*(*(chess+i)+k)!=0 ){
			flag5=1;
			break;}
		}
		if(flag1||flag2||flag3||flag4||flag5){
			return 0;
		}else{
			return 1;
		}
	}
//引數row表示起始行
//引數n表示列數
//引數(*chess)[8]):表示棋盤每行的指標
void eight_que(int row,int n,int (*chess)[8]){
	int i,j,chess2[8][8];
	for(i=0;i<8;i++){
			for(j=0;j<8;j++){
				chess2[i][j]=chess[i][j];}
		}
	if(row==8){
		printf("第%d種成功方法:\n",count+1);
		for(i=0;i<8;i++){
			for(j=0;j<8;j++){
				printf("%d ",*(*(chess2+i)+j));}
				printf("\n");
		}
		printf("\n");
	count++;
}
	else{
		//判斷位置是否有危險
		for(j=0;j<n;j++){
			if(notDanger(row,j,chess)){
				for(i=0;i<8;i++){
				*(*(chess2+row)+i)=0;
				}
					*(*(chess2+row)+j)=1; 
					eight_que(row+1,n,chess2);
			}
		}
	}
}

int main(){
	int chess[8][8],i,j;
	for(i=0;i<8;i++){
		for(j=0;j<8;j++){
			chess[i][j]=0;
		}
	}
	eight_que(0,8,chess);
	printf("總的種類是%d\n",count);
return 0;
}