-
Notifications
You must be signed in to change notification settings - Fork 1
/
019_nested_loops.js
73 lines (66 loc) · 1.06 KB
/
019_nested_loops.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// http://careercup.com/question?id=5741988412391424
// Permutate a list of string
// this question is supposed permutate the characters instead of who string,
// as input example {""red"", ""fox"", ""super"" }, the expected output is
// rfs
// rfu
// rfp
// rfe
// rfr
// ros
// rou
// rop
// roe
// ror
// rxs
// rxu
// rxp
// rxe
// rxr
// efs
// efu
// efp
// efe
// efr
// eos
// eou
// eop
// eoe
// eor
// exs
// exu
// exp
// exe
// exr
// dfs
// dfu
// dfp
// dfe
// dfr
// dos
// dou
// dop
// doe
// dor
// dxs
// dxu
// dxp
// dxe
// dxr
function solve(a) {
var p = new Array(a.length);
for (var i = 0; i < p.length; i++) p[i] = 0;
var i = p.length - 1;
while (i >= 0) {
var s = [];
for (var j = 0; j < p.length; j++) s.push(a[j][p[j]]);
console.log(s.join(''));
while (i >= 0 && p[i] == a[i].length - 1) i--;
if (i < 0) break;
p[i]++;
for (var k = i + 1; k < p.length; k++) p[k] = 0;
i = p.length - 1;
}
}
var a = ['red', 'fox', 'super'];
solve(a);