scala之scan函数

函数scan

​ 同fold,scan把每一步的计算结果放到一个新的集合中返回,flod返回的是最后的结果

格式

def scan[B >: Int, That](z: B)(op: (B, B) => B)(implicit cbf: scala.collection.generic.CanBuildFrom[Array[Int],B,That]): That
def scan[B >: Int, That](z: B)(op: (B, B) => B)(implicit cbf: scala.collection.generic.CanBuildFrom[scala.collection.mutable.WrappedArray[Int],B,That]): That

数据

val a=Array(1,2,3,4,5)
scala> a.scan(0)((x,y)=>{println(x,y,x+y);x+y})
(0,1,1)
(1,2,3)
(3,3,6)
(6,4,10)
(10,5,15)
res121: Array[Int] = Array(0, 1, 3, 6, 10, 15)

函数scanLeft

格式

def scanLeft[B, That](z: B)(op: (B, Int) => B)(implicit bf: scala.collection.generic.CanBuildFrom[Array[Int],B,That]): That
def scanLeft[B, That](z: B)(op: (B, Int) => B)(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.mutable.WrappedArray[Int],B,That]): That
scala> a.scanLeft(5)((x,y)=>{println(x,y,x+y);x+y})
(5,1,6)
(6,2,8)
(8,3,11)
(11,4,15)
(15,5,20)
res122: Array[Int] = Array(5, 6, 8, 11, 15, 20)

函数scanRight

格式

def scanRight[B, That](z: B)(op: (Int, B) => B)(implicit bf: scala.collection.generic.CanBuildFrom[Array[Int],B,That]): That
def scanRight[B, That](z: B)(op: (Int, B) => B)(implicit bf: scala.collection.generic.CanBuildFrom[scala.collection.mutable.WrappedArray[Int],B,That]): That
scala> a.scanRight(0)((x,y)=>{println(x,y,x+y);x+y})
(5,0,5)
(4,5,9)
(3,9,12)
(2,12,14)
(1,14,15)
res125: Array[Int] = Array(15, 14, 12, 9, 5, 0)
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

honconM

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值