我想知道在哪些情况下哪些数据结构最适合使用“包含”或“存在”检查。
我问是因为我来自 Python 背景,并且习惯于if x in something:
对所有事情使用表达式。例如,哪些表达式的计算速度最快:
val m = Map(1 -> 1, 2 -> 2, 3 -> 3, 4 -> 4)
//> m : scala.collection.immutable.Map[Int,Int] = Map(1 -> 1, 2 -> 2, 3 -> 3, 4
//| -> 4)
val l = List(1,2,3,4) //> l : List[Int] = List(1, 2, 3, 4)
val v = Vector(1,2,3,4) //> v : scala.collection.immutable.Vector[Int] = Vector(1, 2, 3, 4)
m.exists(_._1 == 3) //> res0: Boolean = true
m.contains(3) //> res1: Boolean = true
l.exists(_ == 3) //> res2: Boolean = true
l.contains(3) //> res3: Boolean = true
v.exists(_ == 3) //> res4: Boolean = true
v.contains(3) //> res5: Boolean = true
直观地说,我会假设向量应该是最快的随机检查,如果知道检查的值在列表的开头并且有很多数据,那么列表将是最快的。但是,非常欢迎确认或更正。此外,请随时扩展到其他数据结构。
注意:如果您觉得这个问题太模糊,请告诉我,因为我不确定我的措辞是否正确。