有效地返回 scala 排序集合中不存在键的下一个较大值?

发布于 2024-10-06 15:04:29 字数 187 浏览 0 评论 0原文

在 scala 中,给定一个排序的映射、树或列表,返回不存在键的下一个较大值的最有效方法是什么?此外,是否有可能获得从此元素开始的“迭代器/游标”?

编辑:

我对“高效”的任何解释都很满意,例如“运行时”、“内存使用”、“清晰度”或“花费尽可能少的程序员时间来实现和维护”(感谢凯文·赖特)。

In scala, given a sorted map, tree or list, what is the most efficient way to return the next larger value of a non-existing key? Additionally, is it possible to get an "iterator/cursor" starting at this element?

Edit:

I'm happy with any interpretation of "efficiently", e.g. "runtime", "memory usage", "clarity" or "taking the smallest possible amount of programmer time to implement and maintain" (thanks Kevin Wright).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

镜花水月 2024-10-13 15:04:29

如果您使用 SortedMap,那么您可以对其调用 range。嗯,有点像。如果您计划随后在地图中添加和/或删除元素,则它会分解为 2.8.1。如果您避免这些操作应该没问题,并且它也已针对即将推出的 Scala 版本进行了修复。

If you use a SortedMap, then you can call range on it. Well, sort of. It is broken up to 2.8.1 if you plan to add and/or remove elements from the map afterwards. It should be ok if you avoid these operations, and it has been fixed for upcoming Scala versions as well.

网白 2024-10-13 15:04:29

将“高效”定义为“花费尽可能少的程序员时间来实现和维护”...

对于序列:

val s = Seq(2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41)
val overSixteen = s dropWhile (_ < 16)

对于映射:

val s = Map(2->"a", 3->"b", 5->"c", 7->"d", 11->"e", 13->"f")
val overSix = s dropWhile (_._1 < 6)

如果您更喜欢迭代器,只需调用 .iterator 在结果集合上,或者如果您对惰性行为特别感兴趣,您可以使用 .view before dropWhile

Defining "efficiently" as "taking the smallest possible amount of programmer time to implement and maintain"...

For a Sequence:

val s = Seq(2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41)
val overSixteen = s dropWhile (_ < 16)

For a Map:

val s = Map(2->"a", 3->"b", 5->"c", 7->"d", 11->"e", 13->"f")
val overSix = s dropWhile (_._1 < 6)

If you prefer an Iterator, just call .iterator on the resulting collection, or you can use .view before dropWhile if you're especially interested in lazy behaviour.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文