Here is a more general solution, which can create lists not only of binary digits, but of any digits :-)
package de.fencing_game.paul.examples;
import java.util.Arrays;
public class AllNaryNumbers {
private static void printAll(String prefix, Iterable<String> digits,
int length)
{
if(length == 0) {
System.out.println(prefix);
return;
}
for(String digit : digits) {
printAll(prefix + digit, digits, length-1);
}
}
private static void printNumbers(int length, Iterable<String> digits) {
printAll("", digits, length);
}
private static void printBinary(int length) {
printNumbers(length, Arrays.asList("0", "1"));
}
public static void main(String[] params) {
if(params.length == 0) {
printBinary(5);
return;
}
int len = Integer.parseInt(params[0]);
if(params.length == 1) {
printBinary(len);
return;
}
Iterable<String> digits =
Arrays.asList(params).subList(1, params.length);
printNumbers(len, digits);
}
}
Edit: When using my ProductIterable, the code gets shorter:
private static void printNumbers(int length, Iterable<String> digits)
{
for(List<String> number :
new ProductIterable<String>
(Collections.nCopies(length, digits))) {
for(String digit : number) {
System.out.print(digit);
}
System.out.println();
}
}
(and most of it is converting of the Iterable into a string). If we can live with the comma-separated output, we can use a ProductList and make it even shorter:
private static void printNumbers(int length, List<String> digits)
{
System.out.println(new ProductList<String>
(Collections.nCopies(length, digits)));
}
The output would be something like this: [[0, 0, 0], [0, 0, 1], [0, 1, 0], [0, 1, 1], [1, 0, 0], [1, 0, 1], [1, 1, 0], [1, 1, 1]].
Its not recursive, but at least lazy (just-in-time) producing of the elements.