java 从树中获取每个路径列表

fquxozlt  于 2023-04-04  发布在  Java
关注(0)|答案(1)|浏览(263)

你好我有个东西

  1. public class Child {
  2. private String id;
  3. private List<Child> children;
  4. }

下面是一个JSON格式的例子:

  1. {
  2. "id": "1",
  3. "children": [
  4. {
  5. "id": "1_1",
  6. "children": [
  7. {
  8. "id": "1_1_1"
  9. },{
  10. "id": "1_1_2",
  11. "children": [
  12. {
  13. "id": "1_1_2_1"
  14. }
  15. ]
  16. }
  17. ]
  18. },{
  19. "id": "1_2",
  20. "children": [
  21. {
  22. "id": "1_2_1",
  23. "children": [
  24. {
  25. "id": "1_2_1_1"
  26. }
  27. ]
  28. }
  29. ]
  30. }
  31. ]
  32. }

我试图得到每个路径的列表,但找不到方法
我想获取CustomChild列表
CustomChild为:

  1. public class CustomChild {
  2. private String id;
  3. private CustomChild child;
  4. }

最后,列表应该看起来像这样:每个元素都是树的路径

  1. [
  2. {
  3. "id":"1",
  4. "child": {
  5. "id": "1_1",
  6. "child": {
  7. "id": "1_1_1"
  8. }
  9. }
  10. },
  11. {
  12. "id":"1",
  13. "child": {
  14. "id": "1_1",
  15. "child": {
  16. "id": "1_1_2",
  17. "child": {
  18. "id": "1_1_2_1"
  19. }
  20. }
  21. }
  22. },
  23. {
  24. "id":"1",
  25. "child": {
  26. "id": "1_2",
  27. "child": {
  28. "id": "1_2_1",
  29. "child": {
  30. "id": "1_2_1_1"
  31. }
  32. }
  33. }
  34. }
  35. ]

我使用递归尝试了不同的选项,但没有找到实现这一点的方法
非常感谢你抽出时间😄

vm0i2vca

vm0i2vca1#

这里有一个可能的解决方案,我给你的两个类和print方法添加了构造函数,以便快速了解嵌套结构包含什么。

  1. public class Main {
  2. static private class Child {
  3. private String id;
  4. private List<Child> children;
  5. Child(String id, Child... children) {
  6. this.id = id;
  7. this.children = new ArrayList<Child>();
  8. for (Child child : children)
  9. this.children.add(child);
  10. }
  11. void print() {
  12. print("");
  13. }
  14. void print(String tab) {
  15. System.out.println(tab + id);
  16. for (Child child : children) child.print(tab + " ");
  17. }
  18. }
  19. private static class CustomChild {
  20. private String id;
  21. private CustomChild child;
  22. CustomChild(String id, CustomChild child) {
  23. this.id = id;
  24. this.child = child;
  25. }
  26. void print() {
  27. print("");
  28. }
  29. void print(String tab) {
  30. System.out.println(tab + id);
  31. if (child != null) child.print(tab + " ");
  32. }
  33. }
  34. private static List<CustomChild> convert(Child node) {
  35. List<CustomChild> result = new ArrayList<>();
  36. if (node.children.isEmpty()) {
  37. result.add(new CustomChild(node.id, null));
  38. }
  39. for (Child child : node.children) {
  40. for (CustomChild newChild : convert(child)) {
  41. result.add(new CustomChild(node.id, newChild));
  42. }
  43. }
  44. return result;
  45. }
  46. public static void main(String[] args) {
  47. Child tree =
  48. new Child("1",
  49. new Child("1_1",
  50. new Child("1_1_1"),
  51. new Child("1_1_2",
  52. new Child("1_1_2_1")
  53. )
  54. ),
  55. new Child("1_2",
  56. new Child("1_2_1",
  57. new Child("1_2_1_1")
  58. )
  59. )
  60. );
  61. System.out.println("original tree:");
  62. tree.print();
  63. System.out.println("converted forest:");
  64. List<CustomChild> paths = convert(tree);
  65. for (CustomChild node : paths) {
  66. node.print();
  67. }
  68. }
  69. }

main函数创建您作为示例给出的输入结构,并调用convert从该结构生成目标路径列表。
这是上面生成的输出:

  1. original tree:
  2. 1
  3. 1_1
  4. 1_1_1
  5. 1_1_2
  6. 1_1_2_1
  7. 1_2
  8. 1_2_1
  9. 1_2_1_1
  10. converted forest:
  11. 1
  12. 1_1
  13. 1_1_1
  14. 1
  15. 1_1
  16. 1_1_2
  17. 1_1_2_1
  18. 1
  19. 1_2
  20. 1_2_1
  21. 1_2_1_1
展开查看全部

相关问题