/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */packagetictactoecodingame;importjava.util.ArrayList;importjava.util.Random;/** * * @author franck.tempet */publicclassAlgoRechercheAleatoireextendsAlgoRecherche{Randomrnd;publicAlgoRechercheAleatoire(){rnd=newRandom();}@OverridepublicCoupmeilleurCoup(Plateau_plateau,Joueur_joueur,boolean_ponder){ArrayList<Coup>coups=_plateau.getListeCoups(_joueur);returncoups.get(rnd.nextInt(coups.size()));}}