-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBoard.java
124 lines (109 loc) · 2.36 KB
/
Board.java
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import java.util.Arrays;
public class Board implements Comparable<Board>{
private static int[] goal;
private int g;
private int value;
private int[] state;
private int posZ;
private Board parent;
private String hash;
public Board(int state[], int g, int posZ, Board parent){
this.g = g;
this.state = state;
this.posZ = posZ;
value = this.getH() + g;
this.parent = parent;
hash = generateHash(state);
}
public Board(int state[], int g){
this.g = g;
this.state = state;
this.posZ = this.getPosZ(state);
value = this.getH() + g;
hash = generateHash(state);
}
public Board(Board b, Board parent){
this.g = b.getG();
this.state = b.getState();
this.posZ = this.getPosZ(state);
value = this.getH() + g;
this.parent = parent;
hash = generateHash(state);
}
private int getH(){
int count = 0;
for(int i = 0; i < state.length; i++){
if(state[i] != goal[i]){
count++;
}
}
return count;
}
private int getPosZ(int[] arr){
for(int i = 0; i < arr.length; i++){
if(arr[i] == 0) return i;
}
return -1;
}
public boolean equals(int[] check){
return Arrays.equals(state, check);
}
@Override
public int compareTo(Board board){
return this.getVal() - board.getVal();
}
public String toString(){
String res = "";
for(int i = 0; i < state.length; i++){
if(state[i] != -1){
if(state[i] > 9){
res += state[i] + " ";
}else {
res += state[i] + " ";
}
} else {
res += "\n";
}
}
return res;
}
public int getVal(){
return value;
}
public int getZ(){
return posZ;
}
public int getG(){
return g;
}
public int[] getState(){
return Arrays.copyOf(state, state.length);
}
public String getHash(){
return hash;
}
public Board getParent(){
return parent;
}
public static int[] getGoal(){
return goal;
}
public static void setGoal(int[] inGoal){
goal = inGoal;
}
public static String generateHash(int state[]){
String output = "";
int r = 1;
int c = 1;
for(int i = 0; i < state.length; i++){
int curState = state[i];
if(curState != -1) {
int n = (r + c)*curState;
output += n;
}else{
r++;
}
}
return output;
}
}