3

我正在尝试生成字符串的所有可能组合。

例如下面的列表:a1q5z!H9, b1q5z!H9, c1q5z!H9, d1q5z!H9, a2q5z!H9 ... 等等

与其做很多嵌套循环,我想我会用 MODULO 尝试一些聪明的东西......但是碰壁了。

这是我想出的 Javascript - 任何关于我如何继续的指针?

var c = [
  ['a', 'b', 'c', 'd'],
  ['1', '2', '3', '4'],
  ['q', 'w', 'e', 'r'],
  ['5', '6', '7', '8'],
  ['z', 'x', 'c', 'v'],
  ['!', '"', '£', '$'],
  ['H', 'J', 'K', 'L'],
  ['9', '8', '7', '6'],
];

var o = document.getElementById('output');
var pw = "";
var chars = c.length;

for( var i = 0; i <20; i++)
{
  pw = ""
  for(var j = 0; j < chars; j++ )
    {
      pw += c[j][i%4];
    }
  op(pw);
}

function op(s)
{
  o.innerHTML = o.innerHTML + "<br>" + s;
}

这只是输出列表中的前 20 个,但会重复......我几乎拥有它,但并不完全。任何帮助或指针表示赞赏。

4

3 回答 3

6

很容易写一个递归函数demo

function permutate(abc, memo) {
    var options;
    memo = memo || abc.shift().slice(0);

    if(abc.length) {
        options = abc.shift();

        return permutate(abc, memo.reduce(function(all, item){
            return all.concat(options.map(function(option){
                return item + option;
            }))
        }, []));       
    }

    return memo;
};

console.log(permutate(c).length); //65536 items

或者更迫切的方法

function permutate2(abc) {
    var options, i, len, tmp, j, optionsLen, 
        memo = abc.pop().slice(0); //copy first the last array

    while(options = abc.pop()) { //replace recursion
        tmp = [];
        optionsLen = options.length;
        for(i = 0, len = memo.length; i < len; i++) { //for every element in memo
            for(j = 0; j < optionsLen; j++) { //do cartesian product with options
                tmp.push(options[j] + memo[i]);    
            }
        }
        memo = tmp;
    }

    return memo;
}
于 2014-06-24T13:45:43.607 回答
1
function combinations(str) {

debugger;
var arr = [];   
for (var i = 0; i < str.length; i++) 
{
    // create an empty string
    var comb = "";
    // loop for substring
    for (var j = i; j < str.length; j++) 
        {
        comb+=str[j];
        arr.push(comb);
        }
}
  return arr;

}
console.log(combinations('output'));
于 2016-09-15T11:55:35.723 回答
-2

我是这样做的:

string password;
bool done = false;

while (!done) {
    password = string.Empty;

    for(int a = 0; a < blah[0].Length; a++) {
        for(int b = 0; b < blah[1].Length; b++) {
            for (int c = 0; c < blah[2].Length; c++) {
                for (int d= 0; d < blah[3].Length; d++) {
                    for (int e = 0; e < blah[4].Length; e++) {
                        for (int f = 0; f < blah[5].Length; f++) {
                            for (int g = 0; g < blah[6].Length; g++) {
                                for (int h = 0; h < blah[7].Length; h++) {
                                    password = string.Format(
                                        "{0}{1}{2}{3}{4}{5}{6}{7}", 
                                        blah[0][a], 
                                        blah[1][b], 
                                        blah[2][c], 
                                        blah[3][d], 
                                        blah[4][e], 
                                        blah[5][f], 
                                        blah[6][g], 
                                        blah[7][h]);

                                    Console.Out.WriteLine(password);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

其中 blah 是字符矩阵。

丑陋,理所当然,但尤里的简短回答让我很头疼。

于 2014-06-24T14:18:53.640 回答