Hey guys, I'm trying to create a systematic list generator in Java however I've come into slight error. Our example is pizza.
Problem: Suppose you have 6 total toppings to make pizzas with. How many variations of 5 topping pizza's can you possibly make?
So for example :
[Pepperoni, Bacon, Pineapple, Onion, Mushrooms, Peppers] [Pepperoni, Bacon, Pineapple, Onion, Mushrooms, Cheese] etc...
While developing, I have been practising with 3 possible options apposed to 6, as I know there will be three total combinations each with two elements, making my multi-dimentional array easy to generate at this time.
public class SystematicList {
static String options[] = {
"Pepperoni",
"Bacon",
"Cheese"
};
public static void main(String[] args) {
/**
* Generate a multi-dimensional array to represent the combinations of
* pizza toppings we can possibly have from the available <code>options</code>
*
*/
String[][] combos = new String[3][2];
/**
* Ideally what we would like to create.
* combos[0][0] = "Pepperoni";
* combos[0][1] = "Bacon";
* combos[1][0] = "Pepperoni";
* combos[1][1] = "Cheese";
* combos[2][0] = "Bacon";
* combos[2][1] = "Cheese";
*/
for (int pizzas = 0; pizzas < combos.length; pizzas++) {
for (int toppings = 0; toppings < combos[pizzas].length; toppings++) {
combos[pizzas][toppings] = options[0]; // <<< issue : element.
System.out.print(" " + combos[pizzas][toppings]);
}
System.out.println("");
}
/*
* Current Output :
* run:
* Pepperoni Bacon
* Pepperoni Bacon
* Pepperoni Bacon
* BUILD SUCCESSFUL (total time: 0 seconds)
*
* ^ this is obvious, as I currently do not know how I'll select an
* element from the array of topping options before/after a specified
* index [example: 0 which would than range 1 - 2 apposed to 0 - 2
* thus 'dropping' an optional element, making this much easier.
*
* Loop is virtually only doing the actions of :
* 0 : 1,2
* 1 : 1,2
* 2 : 1,2
*/
}
}
I have decided to generate a 2D list to store the values.
int[# possible combinations][# possible values]
My current code assumes we already know the possible combinations (though we of course do not), and regardless we can always determine values (how many 5, 4, 3, 2 topping pizzas can be built)
How am I able to select an element from options[] while ensuring no other array already contains those elements you're trying to insert. I would have tried Arrays.contains or Arrays.equals however I would not know what to insert to compare with, combos[pizzas-1] ?
if (!Arrays.contains(combos[pizzas], combos[pizzas-1]) {
combos[pizzas][toppings] = options[?];
}