如何实施' takeUntil'列表?

时间:2015-11-09 04:48:25

标签: list scala

我希望之前找到所有项目,并且等于第一个7

val list = List(1,4,5,2,3,5,5,7,8,9,2,7,4)

我的解决方案是:

list.takeWhile(_ != 7) ::: List(7)

结果是:

List(1, 4, 5, 2, 3, 5, 5, 7)

还有其他解决方案吗?

7 个答案:

答案 0 :(得分:13)

不耐烦的单线:

List(1, 2, 3, 7, 8, 9, 2, 7, 4).span(_ != 7) match {case (h, t) => h ::: t.take(1)}


更通用的版本:

它将任何谓词作为参数。使用span完成主要工作:

  implicit class TakeUntilListWrapper[T](list: List[T]) {
    def takeUntil(predicate: T => Boolean):List[T] = {
      list.span(predicate) match {
        case (head, tail) => head ::: tail.take(1)
      }
    }
  }

  println(List(1,2,3,4,5,6,7,8,9).takeUntil(_ != 7))
  //List(1, 2, 3, 4, 5, 6, 7)

  println(List(1,2,3,4,5,6,7,8,7,9).takeUntil(_ != 7))
  //List(1, 2, 3, 4, 5, 6, 7)

  println(List(1,2,3,4,5,6,7,7,7,8,9).takeUntil(_ != 7))
  //List(1, 2, 3, 4, 5, 6, 7)

  println(List(1,2,3,4,5,6,8,9).takeUntil(_ != 7))
  //List(1, 2, 3, 4, 5, 6, 8, 9)


尾递归版。

只是为了说明替代方法,它不比以前的解决方案更有效。

implicit class TakeUntilListWrapper[T](list: List[T]) {
  def takeUntil(predicate: T => Boolean): List[T] = {
    def rec(tail:List[T], accum:List[T]):List[T] = tail match {
      case Nil => accum.reverse
      case h :: t => rec(if (predicate(h)) t else Nil, h :: accum)
    }
    rec(list, Nil)
  }
}

答案 1 :(得分:5)

scala.collection.List借用takeWhile实现并稍微改变一下:

def takeUntil[A](l: List[A], p: A => Boolean): List[A] = {
    val b = new scala.collection.mutable.ListBuffer[A]
    var these = l
    while (!these.isEmpty && p(these.head)) {
      b += these.head
      these = these.tail
    }
    if(!these.isEmpty && !p(these.head)) b += these.head

    b.toList
  }

答案 2 :(得分:3)

这是使用foldLeft到达那里的一种方法,以及用于短路长列表的尾递归版本。

还有我在玩这个时使用过的测试。

import scala.annotation.tailrec
import org.scalatest.WordSpec
import org.scalatest.Matchers

object TakeUntilInclusiveSpec {
  implicit class TakeUntilInclusiveFoldLeft[T](val list: List[T]) extends AnyVal {
    def takeUntilInclusive(p: T => Boolean): List[T] =
      list.foldLeft( (false, List[T]()) )({
        case ((false, acc), x)      => (p(x), x :: acc)
        case (res @ (true, acc), _) => res
      })._2.reverse
  }
  implicit class TakeUntilInclusiveTailRec[T](val list: List[T]) extends AnyVal {
    def takeUntilInclusive(p: T => Boolean): List[T] = {
      @tailrec
      def loop(acc: List[T], subList: List[T]): List[T] = subList match {
        case Nil => acc.reverse
        case x :: xs if p(x) => (x :: acc).reverse
        case x :: xs => loop(x :: acc, xs)
      }
      loop(List[T](), list)
    }
  }
}

class TakeUntilInclusiveSpec extends WordSpec with Matchers {
  //import TakeUntilInclusiveSpec.TakeUntilInclusiveFoldLeft
  import TakeUntilInclusiveSpec.TakeUntilInclusiveTailRec

  val `return` = afterWord("return")
  object lists {
    val one = List(1)
    val oneToTen = List(1, 2, 3, 4, 5, 7, 8, 9, 10)
    val boat = List("boat")
    val rowYourBoat = List("row", "your", "boat")
  }

  "TakeUntilInclusive" when afterWord("given") {
    "an empty list" should `return` {
      "an empty list" in {
        List[Int]().takeUntilInclusive(_ == 7) shouldBe Nil
        List[String]().takeUntilInclusive(_ == "") shouldBe Nil
      }
    }

    "a list without the matching element" should `return` {
      "an identical list" in {
        lists.one.takeUntilInclusive(_ == 20) shouldBe lists.one
        lists.oneToTen.takeUntilInclusive(_ == 20) shouldBe lists.oneToTen
        lists.boat.takeUntilInclusive(_.startsWith("a")) shouldBe lists.boat
        lists.rowYourBoat.takeUntilInclusive(_.startsWith("a")) shouldBe lists.rowYourBoat
      }
    }

    "a list containing one instance of the matching element in the last index" should `return`
    {
      "an identical list" in {
        lists.one.takeUntilInclusive(_ == 1) shouldBe lists.one
        lists.oneToTen.takeUntilInclusive(_ == 10) shouldBe lists.oneToTen
        lists.boat.takeUntilInclusive(_ == "boat") shouldBe lists.boat
        lists.rowYourBoat.takeUntilInclusive(_ == "boat") shouldBe lists.rowYourBoat
      }
    }

    "a list containing one instance of the matching element" should `return` {
      "the elements of the original list, up to and including the match" in {
        lists.one.takeUntilInclusive(_ == 1) shouldBe List(1)
        lists.oneToTen.takeUntilInclusive(_ == 5) shouldBe List(1,2,3,4,5)
        lists.boat.takeUntilInclusive(_ == "boat") shouldBe List("boat")
        lists.rowYourBoat.takeUntilInclusive(_ == "your") shouldBe List("row", "your")
      }
    }

    "a list containing multiple instances of the matching element" should `return` {
      "the elements of the original list, up to and including only the first match" in {
        lists.oneToTen.takeUntilInclusive(_ % 3 == 0) shouldBe List(1,2,3)
        lists.rowYourBoat.takeUntilInclusive(_.length == 4) shouldBe List("row", "your")
      }
    }
  }
}

答案 3 :(得分:2)

您可以使用以下功能

def takeUntil(list: List[Int]): List[Int] = list match {
  case x :: xs if (x != 7) => x :: takeUntil(xs)
  case x :: xs if (x == 7) => List(x)
  case Nil => Nil
}

val list = List(1,4,5,2,3,5,5,7,8,9,2,7,4)
takeUntil(list) //List(1,4,5,2,3,5,5,7)

Tail Recursive version

def takeUntilRec(list: List[Int]): List[Int] = {
    @annotation.tailrec
    def trf(head: Int, tail: List[Int], res: List[Int]): List[Int] = head match {
      case x if (x != 7 && tail != Nil) => trf(tail.head, tail.tail, x :: res)
      case x                            => x :: res
    }
    trf(list.head, list.tail, Nil).reverse
  }

答案 4 :(得分:2)

可能的方法:

def takeUntil[A](list:List[A])(predicate: A => Boolean):List[A] =
  if(list.isEmpty) Nil
  else if(predicate(list.head)) list.head::takeUntil(list.tail)(predicate)
  else List(list.head)

答案 5 :(得分:0)

使用内置函数的一些方法:

siblings(X,Y) :-
parents(X,M,F),
parents(Y,M,F).

firstCousin_Of(X,Y) :-
    parents(X,M,F),
    parents(Y,M2,F2),
    siblings(M,M2)
   ;   parents(X,M,F),
    parents(Y,M2,F2),
    siblings(M,F2)
   ;   parents(X,M,F),
    parents(Y,M2,F2),
    siblings(F,M2)
   ;   parents(X,M,F),
    parents(Y,M2,F2),
    siblings(F,F2).

答案 6 :(得分:0)

这里的很多解决方案都不是很有效,因为它们探索了整个列表,而不是提前停止。这是使用内置函数的简短解决方案:

def takeUntil[T](c: Iterable[T], f: T => Boolean): Iterable[T] = {
   val index = c.indexWhere(f)
   if (index == -1) c else c.take(index + 1)
}