stream实现递归封装

简介: stream实现递归封装

上帝等待着人类在智慧中获得新的童年。──泰戈尔

分享一个封装的树处理,源码在这:https://gitee.com/VampireAchao/stream-query

使用方式:

@Test
void testToTree() {
    Consumer<Object> test = o -> {
        List<Student> studentTree = Steam
                .of(
                        Student.builder().id(1L).name("dromara").build(),
                        Student.builder().id(2L).name("baomidou").build(),
                        Student.builder().id(3L).name("hutool").parentId(1L).build(),
                        Student.builder().id(4L).name("sa-token").parentId(1L).build(),
                        Student.builder().id(5L).name("mybatis-plus").parentId(2L).build(),
                        Student.builder().id(6L).name("looly").parentId(3L).build(),
                        Student.builder().id(7L).name("click33").parentId(4L).build(),
                        Student.builder().id(8L).name("jobob").parentId(5L).build()
                )
                // just 3 lambda,top parentId is null
                .toTree(Student::getId, Student::getParentId, Student::setChildren);
        Assertions.assertEquals(asList(
                Student.builder().id(1L).name("dromara")
                        .children(asList(
                                Student.builder().id(3L).name("hutool").parentId(1L)
                                    .children(singletonList(Student.builder().id(6L).name("looly").parentId(3L).build()))
                                    .build(),
                                Student.builder().id(4L).name("sa-token").parentId(1L)
                                    .children(singletonList(Student.builder().id(7L).name("click33").parentId(4L).build()))
                                    .build()))
                        .build(),
                Student.builder().id(2L).name("baomidou")
                        .children(singletonList(
                                Student.builder().id(5L).name("mybatis-plus").parentId(2L)
                                        .children(singletonList(
                                                Student.builder().id(8L).name("jobob").parentId(5L).build()
                                        ))
                                        .build()))
                        .build()
        ), studentTree);
    };
    test = test.andThen(o -> {
        List<Student> studentTree = Steam
                .of(
                        Student.builder().id(1L).name("dromara").matchParent(true).build(),
                        Student.builder().id(2L).name("baomidou").matchParent(true).build(),
                        Student.builder().id(3L).name("hutool").parentId(1L).build(),
                        Student.builder().id(4L).name("sa-token").parentId(1L).build(),
                        Student.builder().id(5L).name("mybatis-plus").parentId(2L).build(),
                        Student.builder().id(6L).name("looly").parentId(3L).build(),
                        Student.builder().id(7L).name("click33").parentId(4L).build(),
                        Student.builder().id(8L).name("jobob").parentId(5L).build()
                )
                // just 4 lambda ,top by condition
                .toTree(Student::getId, Student::getParentId, Student::setChildren, Student::getMatchParent);
        Assertions.assertEquals(asList(
                Student.builder().id(1L).name("dromara").matchParent(true)
                        .children(asList(
                                Student.builder().id(3L).name("hutool").parentId(1L)
                                        .children(singletonList(Student.builder().id(6L).name("looly").parentId(3L).build()))
                                        .build(),
                                Student.builder().id(4L).name("sa-token").parentId(1L)
                                        .children(singletonList(Student.builder().id(7L).name("click33").parentId(4L).build()))
                                        .build()))
                        .build(),
                Student.builder().id(2L).name("baomidou").matchParent(true)
                        .children(singletonList(
                                Student.builder().id(5L).name("mybatis-plus").parentId(2L)
                                        .children(singletonList(
                                                Student.builder().id(8L).name("jobob").parentId(5L).build()
                                        ))
                                        .build()))
                        .build()
        ), studentTree);
    });
    test.accept(new Object());
}
@Test
void testFlatTree() {
    List<Student> studentTree = asList(
            Student.builder().id(1L).name("dromara")
                    .children(asList(Student.builder().id(3L).name("hutool").parentId(1L)
                                    .children(singletonList(Student.builder().id(6L).name("looly").parentId(3L).build()))
                                    .build(),
                            Student.builder().id(4L).name("sa-token").parentId(1L)
                                    .children(singletonList(Student.builder().id(7L).name("click33").parentId(4L).build()))
                                    .build()))
                    .build(),
            Student.builder().id(2L).name("baomidou")
                    .children(singletonList(
                            Student.builder().id(5L).name("mybatis-plus").parentId(2L)
                                    .children(singletonList(
                                            Student.builder().id(8L).name("jobob").parentId(5L).build()
                                    ))
                                    .build()))
                    .build()
    );
    Assertions.assertEquals(asList(
            Student.builder().id(1L).name("dromara").build(),
            Student.builder().id(2L).name("baomidou").build(),
            Student.builder().id(3L).name("hutool").parentId(1L).build(),
            Student.builder().id(4L).name("sa-token").parentId(1L).build(),
            Student.builder().id(5L).name("mybatis-plus").parentId(2L).build(),
            Student.builder().id(6L).name("looly").parentId(3L).build(),
            Student.builder().id(7L).name("click33").parentId(4L).build(),
            Student.builder().id(8L).name("jobob").parentId(5L).build()
    ), Steam.of(studentTree).flatTree(Student::getChildren, Student::setChildren).sorted(Comparator.comparingLong(Student::getId)).toList());
}
@Data
@Builder
public static class Student {
    @Tolerate
    public Student() {
        // this is an accessible parameterless constructor.
    }
    private String name;
    private Integer age;
    private Long id;
    private Long parentId;
    private List<Student> children;
    private Boolean matchParent;
}



相关文章
|
6月前
|
Java
java使用Stream流找出集合对象中最小值
java使用Stream流找出集合对象中最小值
472 1
|
7月前
|
Java 容器
Stream 流常见基本操作
Stream 流常见基本操作
|
6月前
Stream之判断(anyMatch allMatch noneMatch)
Stream之判断(anyMatch allMatch noneMatch)
|
6月前
|
Java
Java——Stream流(2/2):Stream流的中间方法、终结方法(方法、案例演示)
Java——Stream流(2/2):Stream流的中间方法、终结方法(方法、案例演示)
72 0
|
7月前
|
缓存 NoSQL 前端开发
组装生成复杂父子树形结构, Stream + Lambda优雅搞定!
组装生成复杂父子树形结构, Stream + Lambda优雅搞定!
75 1
|
7月前
|
Java
Java8的stream流中flatMap()方法的作用
Java8的stream流中flatMap()方法的作用
355 10
|
7月前
使用Lamda表达式、stream流遍历Map、list
使用Lamda表达式、stream流遍历Map、list
|
7月前
JDK8之stream流的使用:归约类方法
JDK8之stream流的使用:归约类方法
44 0
|
7月前
|
Java 数据处理
关于Stream流和Lambda表达式,这些技巧你都知道吗?
关于Stream流和Lambda表达式,这些技巧你都知道吗?
|
Java
Java集合Stream类filter的使用
Java集合Stream类filter的使用
137 0