所以我有一个功能,在技术上索引字符串中第一个和laster字符之间的字符,在内部加扰,然后重新添加第一个和最后一个字母。它工作正常,直到我意识到带有标点符号的单词使它变得棘手。我希望标点符号保持在相同的索引中,有关如何进行的任何想法吗?
string shuffle_word(string word){
string scramble_str = "", full_scramble = "";
if(word.length() > 2){
scramble_str += word.substr(1, word.length()-2); //indexes the inside string (excludes first and last char)
random_shuffle(scramble_str.begin(), scramble_str.end());
full_scramble = word[0] + scramble_str + word[word.length()-1]; //adds first and last char back on
return full_scramble;
}
else{
return word;
}
}
答案 0 :(得分:0)
使用与第一个和最后一个字符相同的变体可能最容易:
答案 1 :(得分:0)
您可以创建非标点符号的索引列表,然后随机播放索引。然后像这样改进字符串:
if (numShuffledIndices > 0)
{
char temp = word[shuffledIndices[0]]; // save first character
for (int i = 0; i < numShuffledIndices-1; ++i)
{
word[shuffledIndices[i]] = word[shuffledIndices[i+1]];
}
word[shuffledIndices[numShuffledIndices-1]] = temp;
}
因此,如果字符串是“Hello,world!”,那么索引将是[0,1,2,3,4,7,8,9,10,11]。如果它们被拖曳到[7,4,2,9,1,0,11,8,3],那么结果字符串将是“dHrll,olewo!”
答案 2 :(得分:0)
我会选择这样的事情:
std::vector<int> punctuatuion_char_indicies = findIndiciesOfPunctuation(input_string);
std::string result = shuffle_word(input_string);
std::vector<int> punctuatuion_char_indicies2 = findIndiciesOfPunctuation(result);
for(int i=0; i< sizeOfPunctuationVectors ; ++i)
{
std::swap( result[ punctuatuion_char_indicies[i] ],
result[ punctuatuion_char_indicies2[i] ); // std::swap is in <algorithm>
}
或者您可以使用punctuatuion_char_indicies向量来执行部分的随机播放功能。