-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmergesort.js
88 lines (77 loc) · 1.77 KB
/
mergesort.js
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
77
78
79
80
81
82
83
84
85
86
87
88
// Javascript program for Knight Tour problem
let N = 8;
// A utility function to check if i,j are
// valid indexes for N*N chessboard
function isSafe(x, y, sol)
{
return(x >= 0 && x < N && y >= 0 &&
y < N && sol[x][y] == -1);
}
// A utility function to print solution
// matrix sol[N][N]
function printSolution(sol)
{
for(let x = 0; x < N; x++)
{
for(let y = 0; y < N; y++)
document.write(sol[x][y] + " ");
document.write("<br/>");
}
}
function solveKT()
{
let sol = new Array(8);
for(var i = 0; i < sol.length; i++)
{
sol[i] = new Array(2);
}
// Initialization of solution matrix
for(let x = 0; x < N; x++)
for(let y = 0; y < N; y++)
sol[x][y] = -1;
// xMove[] and yMove[] define next move of Knight.
// xMove[] is for next value of x coordinate
// yMove[] is for next value of y coordinate
let xMove = [ 2, 1, -1, -2, -2, -1, 1, 2 ];
let yMove = [ 1, 2, 2, 1, -1, -2, -2, -1 ];
// Since the Knight is initially at the first block
sol[0][0] = 0;
// Start from 0,0 and explore all tours using
// solveKTUtil()
if (!solveKTUtil(0, 0, 1, sol, xMove, yMove))
{
document.write("Solution does not exist");
return false;
}
else
printSolution(sol);
return true;
}
// A recursive utility function to solve Knight
// Tour problem
function solveKTUtil(x, y, movei, sol, xMove, yMove)
{
let k, next_x, next_y;
if (movei == N * N)
return true;
// Try all next moves from the
// current coordinate x, y
for(k = 0; k < 8; k++)
{
next_x = x + xMove[k];
next_y = y + yMove[k];
if (isSafe(next_x, next_y, sol))
{
sol[next_x][next_y] = movei;
if (solveKTUtil(next_x, next_y, movei + 1,
sol, xMove, yMove))
return true;
else
sol[next_x][next_y] = -1; // backtracking
}
}
return false;
}
// Driver code
// Function Call
solveKT();