gpt4 book ai didi

scala - 递归遍历 Scala 列表

转载 作者:行者123 更新时间:2023-12-04 14:42:09 25 4
gpt4 key购买 nike

我正在尝试使用模式匹配递归遍历 Scala 中的列表。我不能使用任何列表函数或 while/for 循环。我需要做的是遍历列表,如果匹配为“4”,则删除一个元素。我是 Scala 的新手,在我的教科书和谷歌上都找不到答案。其他人都使用过滤器方法,或其他一些列表方法。

这是我试图做的(这是错误的)

def removeFours(lst: List[Int]): List[Int] = {
val newLst = lst
lst match {
case Nil => Nil
case a if a == 4 => newLst -= 0
case n => removeFours(newLst)
}
newLst
}

最佳答案

看看这是否适合你。

def removeFours(lst: List[Int], acc: List[Int] = List.empty): List[Int] = {
lst match {
case Nil => acc.reverse
case 4 :: t => removeFours( t, acc )
case h :: t => removeFours( t, h :: acc )
}
}

用法:

scala> removeFours( List(3,7,4,9,2,4,1) )
res84: List[Int] = List(3, 7, 9, 2, 1)

关于scala - 递归遍历 Scala 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34968886/

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