-
Notifications
You must be signed in to change notification settings - Fork 0
/
Node.java
104 lines (83 loc) · 2.55 KB
/
Node.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
/*Βέλλιος Γεώργιος-Σεραφείμ ΑΕΜ:9471 [email protected] Πέτρος Θεολόγου ΑΕΜ:9464 [email protected] */
import java.util.ArrayList;
public class Node {
Node parent;
ArrayList<Node> children;
int nodeDepth;
int[] nodeMove; //(τρέχουσα θέση, ζάρι)
Board nodeBoard;
double nodeEvaluation;
public Node getParent() {
return parent;
}
public ArrayList<Node> getChildren() {
return children;
}
public int getNodeDepth() {
return nodeDepth;
}
public int[] getNodeMove() {
return nodeMove;
}
public Board getNodeBoard() {
return nodeBoard;
}
public double getNodeEvaluation() {
return nodeEvaluation;
}
public void setParent(Node parent) {
this.parent = parent;
}
public void setChildren(ArrayList<Node> children) {
this.children = children;
}
public void setNodeDepth(int nodeDepth) {
this.nodeDepth = nodeDepth;
}
public void setNodeMove(int[] nodeMove) {
this.nodeMove = nodeMove;
}
public void setNodeBoard(Board nodeBoard) {
this.nodeBoard = nodeBoard;
}
public void setNodeEvaluation(double nodeEvaluation) {
this.nodeEvaluation = nodeEvaluation;
}
public Node() { //constructor χωρίς ορίσματα
parent = null;
children = new ArrayList<Node>();
nodeDepth=0;
nodeMove = new int[2];
nodeMove[1]=nodeMove[0]=0;
nodeBoard = new Board();
nodeEvaluation = 0.0;
}
public Node(Node p, int nd, int[] nm, Board nb, double ne) { //constructor με ορίσματα
parent = p;
children = new ArrayList<Node>();
nodeDepth=nd;
nodeMove = nm;
nodeBoard = nb;
nodeEvaluation = ne;
}
public static void printTree(Node root) { //συνάρτηση που εκτυπώνει μερικά από τα στοιχεία του δέντρου (
Node child1 = new Node(); //έγινε για έλγχο της ορθότητας της δημιουργίας του δέντρου)
Node child2 = new Node();
System.out.println("r:"+root.getNodeEvaluation());
for(int i=0; i<6; i++) {
child1 = root.getChildren().get(i);
System.out.print((i+1) +"d:"+child1.getNodeMove()[1]+"e:"+child1.getNodeEvaluation());
System.out.print("\t");
}
System.out.println("");
System.out.println("");
for(int i=0; i<6; i++) {
child1 = root.getChildren().get(i);
for(int j=0; j<6; j++) {
child2 = child1.getChildren().get(j);
System.out.print((i+1)+ "d:"+child2.getNodeMove()[1]+"e:"+child2.getNodeEvaluation());
System.out.print("\n \n");
}
}
}
}