Commit 8183c0aa by Jose Baez

Correccion metodo full

parent fe215e30
......@@ -71,54 +71,85 @@ public class Juego {
//Dos cartas iguales (mismo valor) junto con tres cartas iguales (mismo valor).
public boolean full(List<Carta> cartas) {
List<Integer> valores = new ArrayList<>();
for (Carta c : cartas) {
valores.add(extraer(c.valor));
}
Collections.sort(valores);
int[] numerosArray = pasarAArray(valores);
int con=0;
for (int i = 0; i < numerosArray.length-1; i++) {
if (numerosArray[i] == numerosArray[i+1]) {
con++;
if (con==3 && numerosArray[2] == numerosArray[4]){
return true;
}else if(con==3 && numerosArray[2] == numerosArray[0]){
return true;
if(comprobarPoker(cartas)==3){
List<Integer> valores = new ArrayList<>();
for (Carta c : cartas) {
valores.add(extraer(c.valor));
}
Collections.sort(valores);
int[] numerosArray = pasarAArray(valores);
int con=0;
for (int i = 0; i < numerosArray.length-1; i++) {
if (numerosArray[i] == numerosArray[i+1]) {
con++;
if (con==3 && numerosArray[2] == numerosArray[4]){
return true;
}else if(con==3 && numerosArray[2] == numerosArray[0]){
return true;
}
}
}
return false;
}else {
return false;
}
return false;
}
//Cuatro cartas iguales (mismo valor).
public boolean poker(List<Carta> cartas) {
List<Integer> valores = new ArrayList<>();
for (Carta c : cartas) {
valores.add(extraer(c.valor));
}
Collections.sort(valores);
int counter=0;
int numero=0;
int cantidadNumero=0;
for(int i=1; i<14; i++){
for (int j=0; j<valores.size(); j++) {
int s= valores.get(j);
if(s == i){
counter++;
if(comprobarPoker(cartas)==4){
List<Integer> valores = new ArrayList<>();
comprobarPoker(cartas);
for (Carta c : cartas) {
valores.add(extraer(c.valor));
}
Collections.sort(valores);
int counter=0;
int numero=0;
int cantidadNumero=0;
for(int i=1; i<14; i++){
for (int j=0; j<valores.size(); j++) {
int s= valores.get(j);
if(s == i){
counter++;
}
}
if(counter > cantidadNumero){
numero=i;
cantidadNumero=counter;
}
counter=0;
}
if(counter > cantidadNumero){
numero=i;
cantidadNumero=counter;
if (cantidadNumero==4){
return true;
}else {
return false;
}
counter=0;
}
if (cantidadNumero==4){
return true;
}else {
return false;
}
}
private int comprobarPoker(List<Carta> cartas) {
int contador = 0;
for (Carta c: cartas) {
if (c.palo.equals("K")) {
contador++;
}
if (c.palo.equals("Q")) {
contador++;
}
if (c.palo.equals("K")) {
contador++;
}
if (c.palo.equals("C")) {
contador++;
}
}
return contador;
}
......
......@@ -12,7 +12,7 @@ public class Main {
new Carta("QH"),
new Carta("QH"),
new Carta("QH"),
new Carta("5S"),
new Carta("TS"),
new Carta("9C")
);
......
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