作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用模式匹配递归遍历 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/
我是一名优秀的程序员,十分优秀!