如果我的层次结构仍在排序但变平了-如何使用Java Streams API创建父/子结构?一个例子: 我怎么走
-,A,Foo
A,A1,Alpha1
A,A2,Alpha2
-,B,Bar
B,B1,Bravo1
B,B2,Bravo2
到
-
A
A1,Alpha1
A2,Alpha2
B
B1,Bravo1
B2,Bravo2
一种简单的非流式方法是跟踪父列并查看其是否已更改。
我已经尝试过使用Collector和groupingBy的各种方法,但尚未找到方法。
List<Row> list = new ArrayList<>();
list.add(new Row("-", "A", "Root"));
list.add(new Row("A", "A1", "Alpha 1"));
list.add(new Row("A", "A2", "Alpha 2"));
list.add(new Row("-", "B", "Root"));
list.add(new Row("B", "B1", "Bravo 1"));
list.add(new Row("B", "B2", "Bravo 2"));
//Edit
Map<Row, List<Row>> tree;
tree = list.stream().collect(Collectors.groupingBy(???))
答案 0 :(得分:4)
您可以为每个Map
的名称创建一个索引Row
:
Map<String,Row> nodes = list.stream().collect(Collectors.toMap(Row::getName,Function.identity()));
getName()
是传递给Row
构造函数的第二个属性。
现在您可以使用Map
来构建树了:
Map<Row,List<Row>> tree = list.stream().collect(Collectors.groupingBy(r->nodes.get(r.getParent())));
getParent()
是传递给Row
构造函数的第一个属性。
这将要求Row
类正确地覆盖equals
和hashCode
,以便两个Row
实例具有相同的名称将被视为相等。
您可能应该将根Row
添加到输入List
中。像这样:
list.add(new Row(null, "-", "Root"));
编辑:
我使用完整的Row
类进行了测试(尽管我做了一些捷径),其中包括一个从树根遍历每个级别的第一个孩子的示例:
class Row {
String name;
String parent;
Row (String parent,String name,String something) {
this.parent = parent;
this.name = name;
}
public String getParent () {return parent;}
public String getName () {return name;}
public int hashCode () {return name.hashCode ();}
public boolean equals (Object other) {
return ((Row) other).name.equals (name);
}
public String toString ()
{
return name;
}
public static void main (String[] args)
{
List<Row> list = new ArrayList<>();
list.add(new Row(null, "-", "Root"));
list.add(new Row("-", "A", "Root"));
list.add(new Row("A", "A1", "Alpha 1"));
list.add(new Row("A1", "A11", "Alpha 11"));
list.add(new Row("A", "A2", "Alpha 2"));
list.add(new Row("-", "B", "Root"));
list.add(new Row("B", "B1", "Bravo 1"));
list.add(new Row("B", "B2", "Bravo 2"));
Map<String,Row> nodes =
list.stream()
.collect(Collectors.toMap(Row::getName,Function.identity()));
Map<Row,List<Row>> tree =
list.stream()
.filter(r->r.getParent()!= null)
.collect(Collectors.groupingBy(r->nodes.get(r.getParent())));
System.out.println (tree);
Row root = nodes.get ("-");
while (root != null) {
System.out.print (root + " -> ");
List<Row> children = tree.get (root);
if (children != null && !children.isEmpty ()) {
root = children.get (0);
} else {
root = null;
}
}
System.out.println ();
}
}
输出:
树:
{A1=[A11], A=[A1, A2], B=[B1, B2], -=[A, B]}
遍历:
- -> A -> A1 -> A11 ->