如何通过更改JavaScript中的一个字符来排列字符串?

时间:2018-09-23 07:02:48

标签: javascript regex

对于所有字符串操纵大师来说,这可能是一个有趣的练习。给定一个包含“ x”或“ xx”的字符串散布在准随机位置(例如DNA sequence),我需要通过更改其中的“ x”来对字符串进行置换。每个“ x”实例可以是单数“ x”或双精度“ xx” ,并且整个字符串应包含“ x”和“ xx”的所有可能组合。

给出字符串“ ooxooxoo”,输出将为

[
  "ooxxooxoo",
  "ooxooxxoo",
  "ooxxooxxoo"
]

给出字符串“ ooxxooxoo”,输出为

[
  "ooxooxoo",
  "ooxooxxoo",
  "ooxxooxxoo"
]

给出字符串“ ooxooxoox”,输出为

[
  "ooxxooxoox",
  "ooxooxxoox",
  "ooxooxooxx",
  "ooxxooxxoox",
  "ooxxooxooxx",
  "ooxooxxooxx",
  "ooxxooxxooxx"
]

依此类推。在任何情况下,输出都不应包含三个或更多连续的x。

更新:

经过一番研究,我决定基于Heap's permutation algorithm的解决方案:

function heapsPermute(aInput, aOutput, n) {
  var swap = function(n1, n2) {
      var sTemp = aInput[n1];
      aInput[n1] = aInput[n2];
      aInput[n2] = sTemp;
    };
  n = n || aInput.length;
  if (n===1) {
    // Add only unique combination
    var sCombo = aInput.join(' ');
    if (aOutput.indexOf(sCombo)<0) aOutput.push(sCombo);
  } else {
    for (var i=1, j; i<=n; ++i) {
      heapsPermute(aInput, aOutput, n-1);
      j = (n%2) ? 1 : i;
      swap(j-1, n-1);
    }
  }
}

function permuteChar(sChar, sSource) {
  var aCombos = [],
    aMatchIndexes = [],
    aPermutations = [],
    aResults = [],
    nMatches,
    reMatch = new RegExp(sChar + '+', 'gi');
  // Find matches
  while (oMatch = reMatch.exec(sSource)) {
    aMatchIndexes.push(oMatch.index);
  }
  nMatches = aMatchIndexes.length;
  if (!nMatches) return;
  // Generate combinations
  aCombos.push(Array.apply(null, Array(nMatches)).map(function() {
    return sChar;
  }));
  for (var i=0; i<nMatches; ++i) {
    aCombos.push([]);
    for (var j=0; j<nMatches; ++j) {
      aCombos[aCombos.length-1].push((i<j)?sChar:sChar+sChar);
    }
  }
  // Build list of permutations
  for (var i=0; i<aCombos.length; ++i) {
    heapsPermute(aCombos[i], aPermutations);
  }
  // Search and replace!
  for (var i=0, j, a; i<aPermutations.length; ++i) {
    a = aPermutations[i].split(' ');
    j = 0;
    aResults.push(sSource.replace(reMatch, function(sMatch) {
      return sMatch.replace(reMatch, a[j++])
    }));
  }
  return aResults;
}

console.log(permuteChar('x', 'ooxxooxoox'));

然后,我看到了美宝美的解决方案,上面有一个很好的解释,它更加简洁明了,因此这是我要接受的解决方案。对于仍然使用ES5的用户,这是我的ES5版本的melpomene函数:

function charVariants(sChar, sSource) {
  var aChunks = sSource.split(new RegExp(sChar + '+', 'i')),
    aResults = [aChunks.shift()];
  for (var i=0, a; i<aChunks.length; ++i) {
    a = [];
    for (var j=0; j<aResults.length; ++j) {
      a.push(
        aResults[j] + sChar + aChunks[i],
        aResults[j] + sChar + sChar + aChunks[i]
      );
    }
    aResults = a;
  }
  return aResults;
}

console.log(charVariants('x', 'ooxxooxoox'));

感谢所有花时间帮助的人。

2 个答案:

答案 0 :(得分:3)

我会考虑制作一个简单的递归函数,该函数在遍历字符串时跟踪其位置。像这样:

function doublex(str, index=0, strings = []){
  for (let i = index; i < str.length; i++){
    if (str[i] === 'x'){
      let d = str.slice(0,i) + 'x' + str.slice(i)
      strings.push(d)
      doublex(d, i+2, strings)
    }
  }
  return strings
}
// two x
console.log(doublex('ooxooxoo'))
// three x
console.log(doublex('ooxoxoxoo'))

答案 1 :(得分:3)

这是一个可能的解决方案:

function x_variants(str) {
    const chunks = str.split(/x+/);
    let results = [chunks.shift()];
    for (const chunk of chunks) {
        const acc = [];
        for (const result of results) {
             acc.push(
                 result + 'x' + chunk,
                 result + 'xx' + chunk
             );
        }
        results = acc;
    }
    return results;
}

console.log(x_variants('ooxxooxoo'));
console.log(x_variants('ooxooxoox'));

中间部分实质上是手册flatMap。如果有,也可以

results = results.flatMap(result => [result + 'x' + chunk, result + 'xx' + chunk]);

该算法的工作原理是首先在一个或多个连续x的任何序列上分割输入字符串,例如从'AxBxC'['A', 'B', 'C']

然后我们提取第一个元素,并用它初始化可能的变体数组:

remaining input: ['B', 'C']
possible variants: ['A']

然后我们迭代其余输入元素,并为每个元素将其添加到所有可能的变体两次(一次以'x'的分隔符,一次以'xx'的分隔符)。

第一个'B'

remaining inputs: ['C']
possible variants: ['A' + 'x' + 'B', 'A' + 'xx' + 'B']
                 = ['AxB', 'AxxB']

然后'C'

remaining inputs: []
possible variants: [ 'AxB' + 'x' + 'C', 'AxB' + 'xx' + 'C'
                   , 'AxxB' + 'x' + 'C', 'AxxB' + 'xx' + 'C' ]
                 = [ 'AxBxC', 'AxBxxC'
                   , 'AxxBxC', 'AxxBxxC' ]

每一步,可能的变体数量都会加倍。

当我们用尽所有输入时,我们将返回完整的变体列表。