2

我写了一个 scala 函数,将时间戳列表转换为间隔

  def toIntervals(timestamps: List[String]) = {
    def helper(timestamps: List[String], accu: List[Long]): List[Long] = {
      if (timestamps.tail.isEmpty) accu.reverse
      else {
        val first = timestamps.head.toLong
        val second = timestamps.tail.head.toLong
        val newHead = second - first
        helper(timestamps.tail, newHead :: accu)
      }
    }
    helper(timestamps, List())
  }

并且没有尾声

  def toIntervals(timestamps: List[String]) : List[Long]  = {
      if (timestamps.tail.isEmpty) List()
      else {
        val first = timestamps.head.toLong
        val second = timestamps.tail.head.toLong
        val newHead = second - first
        newHead :: toIntervals(timestamps.tail)
      }
    }

但我有一种感觉,它有一个/两个班轮,例如 map2 。有什么建议吗?

4

2 回答 2

6
(timestamps.tail, timestamps).zipped.map(_.toLong - _.toLong)

是你的单线;不过,它只执行一次效率更高val times = timestamps.map(_.toLong)(这将使其成为两行)。

于 2013-05-14T15:58:40.873 回答
1

接受的答案很好,只是想提供一个替代方案:

timetamps.sliding(2).map { case Seq(a,b) => b - a }

于 2013-05-14T18:35:25.127 回答