gpt4 book ai didi

arrays - 如何根据每个元素的特征对 ruby​​ 数组中的项目进行分组?

转载 作者:数据小太阳 更新时间:2023-10-29 08:31:11 25 4
gpt4 key购买 nike

我有一个通过拆分任何给定单词创建的字母数组。我有一个包含所有五个元音的常量数组,我用它来将字母数组中的每个字母分类为辅音或元音。

VOWELS = ["a","e","i","o","u"]

letters = "compared".split("")
# => ["c", "o", "m", "p", "a", "r", "e", "d"]

word_structure = letters.map { |letter| VOWELS.include?(letter) ? "v" : "c" }
# => ["c", "v", "c", "c", "v", "c", "v", "c"]

我想以某种方式实现两件事:

  1. 将具有相同“word_structure”的“letters”数组中的相邻字母分组。
  2. 获取这些组并将每个可能的 VCV 组合作为另一个数组返回。 V代表一组所有相邻的元音,C代表一组所有相邻的辅音。

.

 groups = ["c", "o", "mp", "a", "r", "e", "d"]

vcv_groups = ["-co", "ompa", "are", "ed-"]

在此示例中,第一个 VCV 组以“-”开头,因为没有第一组元音。接下来的两组完全符合模式,最后一组有另一个“-”,因为没有最后的元音来完成模式。

我试验过 Enumerable#chunk、Enumerable#partition 和 Enumerable#slice_before,但它们都让我感到困惑。如果有人了解实现此目的的简单方法,我将不胜感激。

最佳答案

你可以用一个正则表达式来做到这一点(后面跟着一个困惑的位来根据需要插入连字符):

VOWELS = 'aeiou'

R = /
(?= # begin positive look-ahead
( # begin capture group 1
(?: # begin a non-capture group
[#{VOWELS}]+ # match one or more vowels
| # or
\A # match the beginning of the string
) # end non-capture group
[^#{VOWELS}]+ # match one or more consonants
(?: # begin a non-capture group
[#{VOWELS}]+ # match one or more vowels
| # or
\z # match end of string
) # end non-capture group
) # end capture group 1
) # end positive lookahead
/x # extended mode

def extract(str)
arr = str.scan(R).flatten
arr[0].insert(0, '-') unless VOWELS.include?(arr[0][0])
arr[-1] << '-' unless VOWELS.include?(arr[-1][-1])
arr
end

extract 'compare' #=> ["-co", "ompa", "are"]
extract 'compared' #=> ["-co", "ompa", "are", "ed-"]
extract 'avacados' #=> ["ava", "aca", "ado", "os-"]
extract 'zzz' #=> ["-zzz-"]
extract 'compaaared' #=> ["-co", "ompaaa", "aaare", "aare", "are", "ed-"]

关于arrays - 如何根据每个元素的特征对 ruby​​ 数组中的项目进行分组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33274652/

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