我想添加到有意义的所有集合中,argMax方法。 怎么做?使用含义吗?
答案 0 :(得分:4)
在Scala 2.8上,这可行:
val list = List(1, 2, 3)
def f(x: Int) = -x
val argMax = list max (Ordering by f)
正如mkneissl所指出的,这不会返回 set 的最大点数。这是一个替代实现,并尝试减少对f
的调用次数。如果对f
的调用无关紧要,请参阅mkneissl's answer。另外,请注意他的答案是咖喱,这提供了更好的类型推断。
def argMax[A, B: Ordering](input: Iterable[A], f: A => B) = {
val fList = input map f
val maxFList = fList.max
input.view zip fList filter (_._2 == maxFList) map (_._1) toSet
}
scala> argMax(-2 to 2, (x: Int) => x * x)
res15: scala.collection.immutable.Set[Int] = Set(-2, 2)
答案 1 :(得分:4)
argmax函数(据我所知Wikipedia)
def argMax[A,B](c: Traversable[A])(f: A=>B)(implicit o: Ordering[B]): Traversable[A] = {
val max = (c map f).max(o)
c filter { f(_) == max }
}
如果你真的想要,你可以将它拉到收藏品上
implicit def enhanceWithArgMax[A](c: Traversable[A]) = new {
def argMax[B](f: A=>B)(implicit o: Ordering[B]): Traversable[A] = ArgMax.argMax(c)(f)(o)
}
并像这样使用
val l = -2 to 2
assert (argMax(l)(x => x*x) == List(-2,2))
assert (l.argMax(x => x*x) == List(-2,2))
(Scala 2.8)
答案 2 :(得分:2)
是的,通常的方法是使用'pimp my library'模式来装饰你的收藏品。例如( N.B。就像插图一样,并不意味着是正确的或有效的例子):
trait PimpedList[A] {
val l: List[A]
//example argMax, not meant to be correct
def argMax[T <% Ordered[T]](f:T => T) = {error("your definition here")}
}
implicit def toPimpedList[A](xs: List[A]) = new PimpedList[A] {
val l = xs
}
scala> def f(i:Int):Int = 10
f: (i: Int) Int
scala> val l = List(1,2,3)
l: List[Int] = List(1, 2, 3)
scala> l.argMax(f)
java.lang.RuntimeException: your definition here
at scala.Predef$.error(Predef.scala:60)
at PimpedList$class.argMax(:12)
//etc etc...
答案 3 :(得分:1)
您可以使用Pimp my Library模式向Scala中的现有API添加函数。您可以通过定义隐式转换函数来完成此操作。例如,我有一个类Vector3
来表示3D矢量:
class Vector3 (val x: Float, val y: Float, val z: Float)
假设我希望能够通过编写类似:2.5f * v
的内容来缩放矢量。我无法直接向课程*
添加Float
方法,但我可以提供这样的隐式转换函数:
implicit def scaleVector3WithFloat(f: Float) = new {
def *(v: Vector3) = new Vector3(f * v.x, f * v.y, f * v.z)
}
请注意,这会返回包含new { ... }
方法的结构类型(*
构造)的对象。
我还没有测试过,但我想你可以这样做:
implicit def argMaxImplicit[A](t: Traversable[A]) = new {
def argMax() = ...
}
答案 4 :(得分:1)
这是使用隐式构建器模式执行此操作的方法。它优于以前的解决方案,它可以与任何Traversable一起使用,并返回类似的Traversable。可悲的是,这是非常必要的。如果有人愿意,它可能会变成一个相当难看的折叠。
object RichTraversable {
implicit def traversable2RichTraversable[A](t: Traversable[A]) = new RichTraversable[A](t)
}
class RichTraversable[A](t: Traversable[A]) {
def argMax[That, C](g: A => C)(implicit bf : scala.collection.generic.CanBuildFrom[Traversable[A], A, That], ord:Ordering[C]): That = {
var minimum:C = null.asInstanceOf[C]
val repr = t.repr
val builder = bf(repr)
for(a<-t){
val test: C = g(a)
if(test == minimum || minimum == null){
builder += a
minimum = test
}else if (ord.gt(test, minimum)){
builder.clear
builder += a
minimum = test
}
}
builder.result
}
}
Set(-2, -1, 0, 1, 2).argmax(x=>x*x) == Set(-2, 2)
List(-2, -1, 0, 1, 2).argmax(x=>x*x) == List(-2, 2)
答案 5 :(得分:0)
这是一个基于@Daniel接受的答案的变体,它也适用于集合。
def argMax[A, B: Ordering](input: GenIterable[A], f: A => B) : GenSet[A] = argMaxZip(input, f) map (_._1) toSet
def argMaxZip[A, B: Ordering](input: GenIterable[A], f: A => B): GenIterable[(A, B)] = {
if (input.isEmpty) Nil
else {
val fPairs = input map (x => (x, f(x)))
val maxF = fPairs.map(_._2).max
fPairs filter (_._2 == maxF)
}
}
当然,还可以做一个产生(B,Iterable [A])的变体。
答案 6 :(得分:0)
根据其他答案,您可以非常轻松地将每个答案的优势(对f()
的最小调用等)结合起来。在这里,我们对所有Iterables进行了隐式转换(因此它们可以透明地调用.argmax()
),如果出于某种原因,我们可以使用独立的方法。 ScalaTest测试启动。
class Argmax[A](col: Iterable[A]) {
def argmax[B](f: A => B)(implicit ord: Ordering[B]): Iterable[A] = {
val mapped = col map f
val max = mapped max ord
(mapped zip col) filter (_._1 == max) map (_._2)
}
}
object MathOps {
implicit def addArgmax[A](col: Iterable[A]) = new Argmax(col)
def argmax[A, B](col: Iterable[A])(f: A => B)(implicit ord: Ordering[B]) = {
new Argmax(col) argmax f
}
}
class MathUtilsTests extends FunSuite {
import MathOps._
test("Can argmax with unique") {
assert((-10 to 0).argmax(_ * -1).toSet === Set(-10))
// or alternate calling syntax
assert(argmax(-10 to 0)(_ * -1).toSet === Set(-10))
}
test("Can argmax with multiple") {
assert((-10 to 10).argmax(math.pow(_, 2)).toSet === Set(-10, 10))
}
}
答案 7 :(得分:0)
又好又容易? :
val l = List(1,0,10,2)
l.zipWithIndex.maxBy(x => x._1)._2