如何根据Java中的其他两个列表列出列表

发布于 2025-01-24 17:49:29 字数 1399 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

岁月静好 2025-01-31 17:49:29

有许多可能的方法。以下基本解决方案具有二次时间复杂性,因此如果List2很大,则不好:

List<Integer> result = new ArrayList<>();
for (Integer key : List1) {
   for (MyObject obj : List2) {
      if (obj.getSecondElement().equals(key)) {
         result.add(obj.getFirstElement());
      }
   }
}

如果List2大于您更好地构建从第二个元素到第一个元素的地图,然后在此地图中进行搜索。

There are many possible approaches to this. The following basic solution has a quadratic time complexity, so it's not good if List2 is large:

List<Integer> result = new ArrayList<>();
for (Integer key : List1) {
   for (MyObject obj : List2) {
      if (obj.getSecondElement().equals(key)) {
         result.add(obj.getFirstElement());
      }
   }
}

If the List2 is large than you better construct a map from it's second element to the first one first, and then make search in this map.

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