function printTree(t, index, r, delim) { var out = [], prefix, res; r = r || ''; delim = delim || ' '; index = index || 0; if (index < t.length) { t = t.map(function(el) { return el instanceof Array ? el : [el]; }); prefix = r ? r + delim : ''; for (var i = 0; i < t[index].length; i++) { if (t[index][i] instanceof Array) { res = printTree(t[index][i], 0, r, delim); } else { res = [prefix + t[index][i]]; } for (var j = 0; j < res.length; j++) { out = out.concat(printTree(t, index + 1, res[j], delim)); } } } else { return [r]; } return out; } var tests = [ [1, 2, 3], [1, [2, 3]], [ [1, 2], 3 ], [ [1, 2], [3, 4] ], [ [1, 2], [3, [4, 5], 6] ], [1, [2, [3, [4, 5]]]], [ [1, 2], [ [3, [4, 5, 6]], 7 ] ], [ [1, 2], [ [3, [4, 5, 6]], 7 ], 8 ], [ 1, [ 2, [ 3, [ 4, [5, 6] ], 7 ], 8 ], 9 ], [ 1, [ 2, [ 3, [ [ 4, [5, 6] ] ], 7 ], 8 ], 9 ] ]; for (var i = 0; i < tests.length; i++) { print(printTree(tests[i]).join('\n')); print('\n') }
As you can see, on each iteration we "increment" accumulator with string, and returns whole string when recursion is over.
You can check it in action at: ideone.com/tP5KTC