0
I need to assign a value to an Array and throw it out of a method, but for this I need to take the values that are obtained through this method, to later use this Array obtained in other methods or classes. The print inside the method appears correctly. Now when I step into the Array it does not correctly assign the values. I don’t know if the way the code was made is right for this?
Follow code done so far...
import java.util.Arrays;
public class CombBusca {
private int numeros[] = {1,2,3,4,5};
private int quantidade = 3;
private int resultado[] = new int[3];
private int count = 0;
public String[] novosresultados;
private void busca(int inicio,int fim, int profundidade){
String todosresultados = "";
if ( (profundidade + 1) >= quantidade)
for(int x = inicio; x <= fim; x++){
resultado[profundidade] = numeros[x];
// faz alguma coisa com um dos resultados possiveis
count++;
//Criei aqui a String para posteriormente passar para o Array
todosresultados = resultado[0] + ", " + resultado[1] + ", " + resultado[2];
System.out.println(resultado[0] + ", " + resultado[1] + ", " + resultado[2]);
} else
for(int x = inicio; x <= fim; x++){
resultado[profundidade] = numeros[x];
busca(x + 1,fim + 1,profundidade + 1);
}
// Novo Array para jogar fora do método "busca" e usar em outros metodos ou classes
novosresultados = todosresultados.split(", ");
// Aqui quando mando o print é que acontece o erro
System.out.println(Arrays.asList(novosresultados));
}
public static void main(String args[]){
CombBusca comb = new CombBusca();
comb.busca(0, (5-3), 0);
System.out.println("Total de combinacoes: " + comb.count);
}
}
Exit:
[1, 2, 5]
[1, 3, 5]
[1, 4, 5]
[]
[2, 3, 5]
[2, 4, 5]
[]
[3, 4, 5]
[]
[]
Total of combinations: 10
Expected mode:
1, 2, 3
1, 2, 4
1, 2, 5
1, 3, 4
1, 3, 5
1, 4, 5
2, 3, 4
2, 3, 5
2, 4, 5
3, 4, 5
Total of combinations: 10
I tried gives suggested form, but not all combinations are generated. Always at the end of each line displays the number 5:
– Mecsr
1, 2, 5 1, 3, 5 1, 4, 5 1, 4, 5 2, 3, 5 2, 4, 5 2, 4, 5 3, 4, 5 3, 4, 5&Xa;3, 4, 5 Total of combinations: 10
– Mecsr