recherche

Maison  >  Questions et réponses  >  le corps du texte

js donne toutes les combinaisons

Comment obtenir la combinaison ?
Utiliser js
Avez-vous de bonnes idées et conseils~

过去多啦不再A梦过去多啦不再A梦2753 Il y a quelques jours419

répondre à tous(4)je répondrai

  • 我想大声告诉你

    我想大声告诉你2017-05-19 10:17:45

    J'ai réussi l'examen. . .

    function permute(input) {
      var permArr = [],
      usedChars = [];
      function main(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());
          }
          main(input);
          input.splice(i, 0, ch);
          usedChars.pop();
        }
        return permArr;
      }
      return main(input).join('\n');
    };
    console.log(permute(['foo','bar','hello','world']));

    répondre
    0
  • 怪我咯

    怪我咯2017-05-19 10:17:45

    var arr = ['foo', 'bar', 'hello', 'world']; 
    
    // 4 3 2 1 
    var first = {}
    var result = []; 
    arr.forEach((first, idx, its) => {
        its.filter(e => e!==first).forEach((sec, idx, its) => {
            its.filter(e => e!==sec).forEach((third, idx, its)=> { 
                its.filter(e => e!=third).forEach((forth, idx, its) => {
                    console.log(first, sec, third, forth); 
                    result.push(first + sec + third + forth); 
                }); 
            });
        });
    });

    = = Traversée folle. . .

    répondre
    0
  • 習慣沉默

    習慣沉默2017-05-19 10:17:45

    Vous pouvez utiliser la méthode du graphe orienté pour obtenir tous les chemins de quatre nœuds

    répondre
    0
  • PHP中文网

    PHP中文网2017-05-19 10:17:45

    Pile et file d'attente

    répondre
    0
  • Annulerrépondre