-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEightQueensPuzzle.php
More file actions
76 lines (71 loc) · 1.49 KB
/
Copy pathEightQueensPuzzle.php
File metadata and controls
76 lines (71 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/*
* @Name: Eight Queens Puzzle PHP
* @Author: Max Base
* @Date: 2022-11-01
* @Repository: https://github.com/BaseMax/EightQueensPuzzlePHP
*/
// Functions
function createBoard($size) {
$board = [];
for($i=0; $i<$size; $i++) {
$board[$i] = [];
for($j=0; $j<$size; $j++) {
$board[$i][$j] = 0;
}
}
return $board;
}
function printBoard(&$board) {
$size = count($board);
for($i=0; $i<$size; $i++) {
for($j=0; $j<$size; $j++) {
echo $board[$i][$j] . " ";
}
echo "\n";
}
}
function isSafe(&$board, $row, $col) {
$size = count($board);
for($i=0; $i<$col; $i++) {
if($board[$row][$i]) {
return false;
}
}
for($i=$row, $j=$col; $i>=0 && $j>=0; $i--, $j--) {
if($board[$i][$j]) {
return false;
}
}
for($i=$row, $j=$col; $j>=0 && $i<$size; $i++, $j--) {
if($board[$i][$j]) {
return false;
}
}
return true;
}
function solve(&$board, $col) {
$size = count($board);
if($col >= $size) {
return true;
}
for($i=0; $i<$size; $i++) {
if(isSafe($board, $i, $col)) {
$board[$i][$col] = 1;
if(solve($board, $col+1)) {
return true;
}
$board[$i][$col] = 0;
}
}
return false;
}
// Main
$size = 8;
$board = createBoard($size);
if(solve($board, 0)) {
printBoard($board);
}
else {
echo "No solution";
}