gpt4 book ai didi

c++ - 在字符串中移动一个单词,单词之间用空格作为分隔符

转载 作者:太空狗 更新时间:2023-10-29 20:05:06 25 4
gpt4 key购买 nike

让我用一个例子更详细地解释我的问题。

给定一个字符串:

"Assonance is the reiteration of the same vowel sound at the beginning of several consecutive words"

如果我们想把第四个词,也就是reiteration,移到第二个词的位置,字符串会变成:

"Assonance reiteration is the of the same vowel sound at the beginning of several consecutive words"

给定一个 C 函数原型(prototype)如下:

void move(char *s, int word_begin_ind, int word_end_ind, int target_begin_ind)

如何实现这个功能来完成工作?

在上面的例子中,word_begin_ind = 17, word_end_ind = 27, target_begin_ind = 10

这不是作业。其实是一道面试题。我有一个算法。基本思想是这样的:

(1) 使用word_begin_indword_end_ind 复制目标词。

(2) 从target_begin_indword_begin_ind - 1,将每个字符移动到正确的位置。例如,将 word_begin_ind-1 移动到 'word_end_ind',将 word_begin_ind-2 移动到 'word_end_ind-1' 等等。

(3) 最后将拷贝移动到合适的位置(从target_begin_ind开始)。

希望大家能明白我在问什么。

您不需要使用 c 来完成这项工作。也欢迎使用 C++。

谁能帮我找到其他解决方案?

最佳答案

  1. 在一个位置的开始和另一个位置的结束之间取一个范围:

    "Assonance [is the reiteration] of the same vowel sound at the beginning of several consecutive words"
  2. 反转这个范围:

    "Assonance [noitaretier eht si] of the same vowel sound at the beginning of several consecutive words"
  3. 将此范围拆分为单词和其他所有内容:

    "Assonance [noitaretier|eht si] of the same vowel sound at the beginning of several consecutive words"
  4. 反向词:

    "Assonance [reiteration|eht si] of the same vowel sound at the beginning of several consecutive words"
  5. 颠倒一切-其他:

    "Assonance [reiteration|is the] of the same vowel sound at the beginning of several consecutive words"
  6. 那么你已经完成了。

关于c++ - 在字符串中移动一个单词,单词之间用空格作为分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15212749/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com