Commit 82d9ee28 authored by DELBECQ Théo's avatar DELBECQ Théo

Merge branch 'master' into 'Theo'

Master

See merge request !10
parents 5464252f 9a4d46c0
...@@ -11,11 +11,11 @@ import java.util.ArrayList; ...@@ -11,11 +11,11 @@ import java.util.ArrayList;
/** /**
* *
* @author senda * @author senda
*/
public class AlgoRecherMinMax1 extends AlgoRecherche { public class AlgoRecherMinMax1 extends AlgoRecherche {
ArrayList ListCoup; ArrayList ListCoup;
public AlgoRecherMinMax1() { /*public AlgoRecherMinMax1() {
} }
...@@ -26,4 +26,12 @@ public class AlgoRecherMinMax1 extends AlgoRecherche { ...@@ -26,4 +26,12 @@ public class AlgoRecherMinMax1 extends AlgoRecherche {
return ; return ;
} }
} }*/
/* L'idée c'est :
- Créer un arbre de coups :
On récupère les coups dispo
On fait toutes les possibilités d'enchaînement de coups (<N, <MaxCoupsRestants)
- On applique MinMax
- On rend le meilleur coup selon notre algorythme
*/
\ No newline at end of file
...@@ -12,19 +12,23 @@ import java.util.ArrayList; ...@@ -12,19 +12,23 @@ import java.util.ArrayList;
* @author senda * @author senda
*/ */
public class Arbre { public class Arbre {
public static int N = 5;
private Fraction value; protected Fraction value;
private ArrayList<Coup> coups; protected ArrayList<Coup> coups;
private ArrayList<Arbre> fils; protected ArrayList<Arbre> fils;
// Les constructeurs : // Les constructeurs :
public Arbre(){
}
public Arbre (Fraction value, ArrayList coups, ArrayList fils){ public Arbre (Fraction value, ArrayList coups, ArrayList fils){
this.value = value; this.value = value;
this.fils = fils; this.fils = fils;
this.coups = coups; this.coups = coups;
} }
public Arbre (int den, int num, ArrayList coups, ArrayList fils){ public Arbre (int num, int den, ArrayList coups, ArrayList fils){
this.value.den = den; this.value.den = den;
this.value.num = num; this.value.num = num;
this.fils = fils; this.fils = fils;
...@@ -47,7 +51,7 @@ public class Arbre { ...@@ -47,7 +51,7 @@ public class Arbre {
this.value = value; this.value = value;
} }
public Arbre (int den, int num){ public Arbre (int num, int den){
this.value.den = den; this.value.den = den;
this.value.num = num; this.value.num = num;
} }
...@@ -57,14 +61,18 @@ public class Arbre { ...@@ -57,14 +61,18 @@ public class Arbre {
return(value.getNote()); return(value.getNote());
} }
public ArrayList getfils(){ public ArrayList<Arbre> getfils(){
return(fils); return(fils);
} }
public ArrayList getcoups(){ public ArrayList getcoups(){
return(coups); return(coups);
} }
public Fraction getFrac(){
return(this.value);
}
//Des choses sans nom : //Des choses sans nom :
public void setvalue(Fraction value){ public void setvalue(Fraction value){
this.value = value; this.value = value;
......
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
package tictactoecodingame; package tictactoecodingame;
import java.util.ArrayList; import java.util.ArrayList;
import static tictactoecodingame.Generator.random_tests;
/** /**
* *
...@@ -13,7 +14,6 @@ import java.util.ArrayList; ...@@ -13,7 +14,6 @@ import java.util.ArrayList;
*/ */
public class ArbreMinMax { public class ArbreMinMax {
public static int N = 5;
protected int value; protected int value;
//Coup théorique joué à ce noeud //Coup théorique joué à ce noeud
protected Coup coup; protected Coup coup;
...@@ -59,7 +59,12 @@ public class ArbreMinMax { ...@@ -59,7 +59,12 @@ public class ArbreMinMax {
} }
public ArrayList<ArbreMinMax> getfils(){ public ArrayList<ArbreMinMax> getfils(){
return(fils); if(fils != null){
return(fils);
}
else{
return null;
}
} }
public Coup getcoup(){ public Coup getcoup(){
...@@ -133,29 +138,27 @@ public class ArbreMinMax { ...@@ -133,29 +138,27 @@ public class ArbreMinMax {
return m; return m;
} }
public void MinMax(int h){ public void MinMax(int c){
// h = hauteur, on l'incrémente comme un compteur // c = compteur
// N est la profondeur à explorer en MinMax, toutes les feuilles en N+1 sont évaluées // Le compteur doit être initialisé à 0 donc pair -> Max, impair -> Min
// La racine est un Max, donc impair -> Max, pair -> Min
if(N >= h){ // On doit chosir entre min et max if(this.getfils() != null){
if(h%2 == 0){
//On attribue le Min
int m = this.Min();
this.setvalue(m);
}
else{
//On attribue le max
int m = this.Max();
this.setvalue(m);
}
int a = this.getfils().size(); int a = this.getfils().size();
for(int i = 0; i < a ; i++){ for(int i = 0; i < a ; i++){
this.getfils().get(i).MinMax(h + 1); this.getfils().get(i).MinMax(c+1);
} }
} }
else{//On a h > N, on utilise la fonction d'évaluation
if(c%2 == 0){
//On attribue le Min
int m = this.Min();
this.setvalue(m);
}
else{
//On attribue le max
int m = this.Max();
this.setvalue(m);
}
} }
} }
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment