遍历Map中的传递键

发布于 2024-10-12 11:56:03 字数 403 浏览 2 评论 0原文

我有 Map 其中包含以下元素:{“a”=”b”, “b”=”c”, “c”=”d”, “z”=” y”,……}。

我需要一个方法:

List<String> getTransitiveKeys(String startKey);// assuming the map is visible somehow as `map`

当调用 getTransitiveKeys(“a”) 时,它将返回 [“a”, “b”, “c”]。当调用getTransitiveKeys(“z”)时,它将返回[“z”]。

方法中需要递归吗?

谢谢!

I have Map<String, String> which contains elements like: {“a”=”b”, “b”=”c”, “c”=”d”, “z”=”y”, …}.

I need a method:

List<String> getTransitiveKeys(String startKey);// assuming the map is visible somehow as `map`

When getTransitiveKeys(“a”) is called, it will return [“a”, “b”, “c”]. When getTransitiveKeys (“z”) is called, it will return [“z”].

Recursion needed in the method?

Thanks!

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

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

发布评论

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

评论(2

青芜 2024-10-19 11:56:03
List<String> getTransitiveKey(String key) {
   List<String> result = new LinkedList<String>();
   while(map.containsKey(key)) {
    // avoid endless loops
    if(result.contains(key)) {
      break;
    }

    result.add(key);  
    key = map.get(key)
  }
  return result;
}
List<String> getTransitiveKey(String key) {
   List<String> result = new LinkedList<String>();
   while(map.containsKey(key)) {
    // avoid endless loops
    if(result.contains(key)) {
      break;
    }

    result.add(key);  
    key = map.get(key)
  }
  return result;
}
冷心人i 2024-10-19 11:56:03

为什么要递归?只是一个循环

while(map.get(startKey) != null) {
    startKey =  map.get(startKey);
}

why recursion ? just a single loop

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