如何按其值对 scala.collection.Map[java.lang.String, Int] 进行排序?

发布于 2024-09-04 01:19:37 字数 97 浏览 2 评论 0原文

如何按 scala.collection.Map[java.lang.String, Int] 的值对它进行排序(在 Int 上也是如此)?什么是一个简短而优雅的方法来做到这一点?

How would you sort a scala.collection.Map[java.lang.String, Int] by its values (so on the Int)? What is a short and elegant way to do that?

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

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

发布评论

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

评论(1

节枝 2024-09-11 01:19:37

根据预期的输出集合类型(SortedMap 按键排序),您可以使用如下内容:

Map("foo"->3, "raise"->1, "the"->2, "bar"->4).toList sortBy {_._2}

结果将是按值排序的键/值对列表:

List[(java.lang.String, Int)] = List((raise,1), (the,2), (foo,3), (bar,4))

有保留原始顺序的 Map 类型 ListMap,如果应用此,您将再次拥有一个地图:

import collection.immutable.ListMap                                          
ListMap(Map("foo"->3, "raise"->1, "the"->2, "bar"->4).toList.sortBy{_._2}:_*)

那么您将拥有:

scala.collection.immutable.ListMap[java.lang.String,Int] = Map((raise,1), (the,2), (foo,3), (bar,4))

(Scala 2.8)

Depending on what the expected output collection type is (SortedMaps are sorted on the keys), you could use something like this:

Map("foo"->3, "raise"->1, "the"->2, "bar"->4).toList sortBy {_._2}

Result would be the list of key/value pairs sorted by the value:

List[(java.lang.String, Int)] = List((raise,1), (the,2), (foo,3), (bar,4))

There is a Map type that retains the original order, ListMap, if you apply this, you have a map again:

import collection.immutable.ListMap                                          
ListMap(Map("foo"->3, "raise"->1, "the"->2, "bar"->4).toList.sortBy{_._2}:_*)

Then you have:

scala.collection.immutable.ListMap[java.lang.String,Int] = Map((raise,1), (the,2), (foo,3), (bar,4))

(Scala 2.8)

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