javascript javascipt中的排列

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript javascipt中的排列相关的知识,希望对你有一定的参考价值。

var permArr = [],
  usedChars = [];

function permute(input) {
    var i, ch;
    for (i = 0; i < input.length; i++) {
        ch = input.splice(i, 1)[0];
        usedChars.push(ch);
        if (input.length == 0) {
            permArr.push(usedChars.slice());
        }
            permute(input);
            input.splice(i, 0, ch);
            usedChars.pop();
        }
        return permArr
    };
}

以上是关于javascript javascipt中的排列的主要内容,如果未能解决你的问题,请参考以下文章

python 学习之javascipts中的jQuery

[译]Javascipt中的Strings

JavaScript---认识JavaScipt

认识JavaScipt

javascipt入门

JavaScipt 源码解析 数据缓存