集合转为树结构工具

表头

工具类


public class ThreeUtils {/*** 树结构转换处理-每次递归查询全部下级以及下级的子集** @param menuList     需要处理的数据集* @param threeResult  返回对象* @param parentId     父级ID* @param dataTreating 逻辑处理* @param <T>*/public static <T extends Three, E extends Three> void treeListAncestral(List<T> menuList, E threeResult, Long parentId, ThreeFunctional<T, E> dataTreating) {if (ObjectUtil.isEmpty(menuList)) {return;}Map<Long, List<T>> collect = menuList.stream().filter(menu -> menu != null && menu.getParentId() != null).collect(Collectors.groupingBy(Three::getParentId));//根据父级ID查询下级List<T> threes = collect.get(parentId);if (ObjectUtil.isEmpty(threes)) {return;}ArrayList<T> groupT = threes.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(T::getId))), ArrayList::new));for (T three : groupT) {/*根据本次循环ID查询所有下级以及子集*/List<T> ancestralThreeList = menuList.stream().filter(m -> StringUtil.leftPad(String.valueOf(m.getId()), String.valueOf(m.getId()).length()).equals(String.valueOf(three.getId()))).collect(Collectors.toList());if (ObjectUtil.isEmpty(ancestralThreeList)) {continue;}//树处理逻辑E e = dataTreating.dataTreating(ancestralThreeList, threeResult);if (null == e) {return;}/*创建下级返回对象类,并且存入当前上级的下级集合中*/List<E> itemList = threeResult.getItemList();if (null == itemList) {itemList = new ArrayList<>();}itemList.add(e);threeResult.setItemList(itemList);//执行递归处理treeListAncestral(menuList, e, three.getId(), dataTreating);}}/*** 树结构转换处理-每次递归查询下级** @param menuList     树处理集合* @param threeResult  返回对象* @param parentId     父级ID* @param dataTreating 逻辑处理* @param <T>*/public static <T extends Three, E extends Three> void treeList(List<T> menuList, E threeResult, Long parentId, ThreeFunctional<T, E> dataTreating) {if (ObjectUtil.isEmpty(menuList)) {return;}Map<Long, List<T>> collect = menuList.stream().filter(menu -> menu != null && menu.getParentId() != null).collect(Collectors.groupingBy(Three::getParentId));//根据父级ID查询下级List<T> threes = collect.get(parentId);if (ObjectUtil.isEmpty(threes)) {return;}ArrayList<T> groupT = threes.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() -> new TreeSet<>(Comparator.comparing(T::getId))), ArrayList::new));for (T three : groupT) {/*根据本次循环ID查询所有下级*/List<T> ancestralThreeList = menuList.stream().filter(menu -> menu != null && menu.getParentId() != null && menu.getParentId().equals(three.getId())).collect(Collectors.toList());if (ObjectUtil.isEmpty(ancestralThreeList)) {continue;}//树处理逻辑E e = dataTreating.dataTreating(ancestralThreeList, threeResult);if (null == e) {return;}/*创建下级返回对象类,并且存入当前上级的下级集合中*/List<E> itemList = threeResult.getItemList();if (null == itemList) {itemList = new ArrayList<>();}itemList.add(e);threeResult.setItemList(itemList);//执行递归处理treeList(menuList, e, three.getId(), dataTreating);}}
}

树处理函数接口


@FunctionalInterface
public interface ThreeFunctional<T, E> {/*** 树处理逻辑** @param threeList 处理后的树结构* @param data      处理后的树类结果对象*                  这里返回创建一个新的空对象即可*/E dataTreating(List<T> threeList, E data);
}

树实体类


@Data
public class Three<E> implements Serializable {private static final long serialVersionUID = 2883288479291688378L;private Long id;private String name;private Long parentId;//数据结果集private List<E> ItemList;}

请求响应实体类

@Data
@ApiModel("返回VO")
public class CoveredCountyEnteringVO extends Three<CoveredCountyEnteringVO> implements Serializable {private static final long serialVersionUID = -1571960669989120842L;private Integer monitorBabyNumber;private Integer standardBabyNumber;private BigDecimal percentOfPass;}@Data
@ApiModel("响应DTO")
public class CoveredCountyEnteringDTO extends Three<CoveredCountyEnteringDTO> implements Serializable {private static final long serialVersionUID = -1571960669989120842L;private String medicalQuestion1;private String medicalQuestion3;private String medicalQuestion7;}

调用

//需要处理的数据集合-需要继承 Three类List<CoveredCountyEnteringDTO> questionnaireList = cniQuestionnaireMapper.selectByAreaCode(reportFormsDTO);//创建返回对象-继承 Three类CoveredCountyEnteringVO countyEnteringVO = new CoveredCountyEnteringVO();ThreeUtils.treeListAncestral(questionnaireList, countyEnteringVO, reportFormsDTO.getAreaCode(), (threeList, data) -> {if (ObjectUtil.isEmpty(threeList)) {return null;}Long monitorBabyNumber = threeList.stream().count();Stream<CoveredCountyEnteringDTO> standardBabyNumber = threeList.stream().filter(coveredCountyEnteringDTO -> null != coveredCountyEnteringDTO&& StringUtils.isNotBlank(coveredCountyEnteringDTO.getMedicalQuestion1())&& StringUtils.isNotBlank(coveredCountyEnteringDTO.getMedicalQuestion3())&& StringUtils.isNotBlank(coveredCountyEnteringDTO.getMedicalQuestion7()));CoveredCountyEnteringDTO coveredCountyEnteringDTO = threeList.get(0);/*将处理后的数据放入 data集合中*/CoveredCountyEnteringVO resultCoveredCountVO = new CoveredCountyEnteringVO();resultCoveredCountVO.setId(coveredCountyEnteringDTO.getId());resultCoveredCountVO.setName(coveredCountyEnteringDTO.getName());resultCoveredCountVO.setParentId(coveredCountyEnteringDTO.getParentId());resultCoveredCountVO.setMonitorBabyNumber(null != monitorBabyNumber ? Integer.valueOf(monitorBabyNumber + "") : 0);resultCoveredCountVO.setStandardBabyNumber(ObjectUtil.isNotEmpty(standardBabyNumber) ? Integer.valueOf(standardBabyNumber.count() + "") : 0);/*计算合格率*/resultCoveredCountVO.setPercentOfPass(BigDecimalUtils.rate(resultCoveredCountVO.getStandardBabyNumber() + "", resultCoveredCountVO.getMonitorBabyNumber() + ""));return resultCoveredCountVO;});

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/15994.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

深入理解 Spring 上下文(Context)层次结构

前言 在使用 Spring 框架进行应用程序开发时&#xff0c;Spring 上下文&#xff08;Context&#xff09;是一个非常重要的概念。Spring 上下文提供了一个环境&#xff0c;用于管理应用程序中的对象&#xff08;通常称为 Bean&#xff09;及其之间的依赖关系。在复杂的应用程序…

springmvc揭秘之HandlerAdapter处理适配器

HandlerAdapter处理适配器 HandlerMapping通过request找到了handler&#xff0c;HandlerAdapter是具体使用Handler来干活的&#xff0c;每个HandlerAdapter封装了一种Handler的具体使用方法 由于Spring经过很长时间的版本迭代&#xff0c;为了适配老版本&#xff0c;Spring 中的…

数据仓库与数据挖掘实验练习6-7(实验四2024.5.22)

tips&#xff1a; 列出虚拟环境&#xff1a;conda env list 激活虚拟环境&#xff1a;activate hi 进入jupyter-lab&#xff1a;jupyter lab 练习6 1. 处理字符串空格 发现问题: 使用 values 属性查看数据时&#xff0c;如果发现 Name 列没有对齐&#xff0c;很可能是 Name 左…

spring模块(三)Spring AOP(2)使用

一、demo 1、spring项目 &#xff08;1&#xff09;pom <dependencies><dependency><groupId>org.springframework</groupId><artifactId>spring-core</artifactId><version>4.3.13.RELEASE</version></dependency>&l…

0元入驻抖音小店,真的是好事吗?

大家好&#xff0c;我是喷火龙。 抖音小店去年推出0元入驻抖音小店个人店的政策&#xff0c;简而言之就是只要一张身份证就可以开店&#xff0c;不需要营业执照&#xff0c;也不需要交保证金。 很多人一听很心动&#xff0c;因为没有任何成本就可以开店&#xff0c;于是纷纷跑…

重新思考:Netflix 的边缘负载均衡

声明 本文是对Netflix 博客的翻译 前言 ​ 在先前关于Zuul 2开源的文章中&#xff0c;我们简要概述了近期在负载均衡方面的一些工作。在这篇文章中&#xff0c;我们将更详细地介绍这项工作的原因、方法和结果。 ​ 因此&#xff0c;我们开始从Zuul和其他团队那里学习&#…

Java Wrapper 包装类

包装类 包装类的理解 Java提供了两个类型系统&#xff0c;基本数据类型和引用数据类型&#xff0c;但是在一些场景中&#xff0c;我们需要使用基本数据类型像对象那样使用。而包装类提供了这种行径 为什么要使用包装类 为了使得基本数据类型的变量具备引用数据类型变量的相…

Mac上如何安装低版本chrome浏览器

背景 为了排查项目上使用chrome低版本的兼容性问题&#xff0c;需要在本机【mac系统】上安装一个低版本的chrome浏览器。 不同版本的chrome下载地址 https://www.slimjet.com/chrome/google-chrome-old-version.php 下载后要记得你下载的旧版本的版本号&#xff0c;后面修改…

Java中RestTemplate的使用方法与解读

引言 在Java中&#xff0c;RestTemplate 是Spring框架提供的一个用于方便访问RESTful服务的类。它提供了多种方法来发送HTTP请求&#xff0c;包括GET、POST、PUT、DELETE等&#xff0c;并能够处理响应数据。 引入依赖 在使用RestTemplate之前&#xff0c;首先需要在项目中引入…

Java的单向链表和双向链表的写法

Java的单向链表和双向链表的写法 单向链表&#xff1a;简单单向链表&#xff1a;代码添加节点方法和遍历链表方法的代码&#xff1a;使用&#xff1a; 双向链表&#xff1a;简单的双向链表&#xff1a;代码添加节点方法和遍历链表方法的代码&#xff1a;使用&#xff1a; 单向链…

ICML 2024 | 北大、字节提出新型双层位置编码方案,有效改善长度外推效果

在这项工作中&#xff0c;我们利用语言序列的内在分段特性&#xff0c;设计了一种新的位置编码方法来达到更好的长度外推效果&#xff0c;称为双层位置编码&#xff08;BiPE&#xff09;。对于每个位置&#xff0c;我们的 BiPE 融合了段内编码和段间编码。段内编码通过绝对位置…

JS事件委托模型和例子

在JavaScript中&#xff0c;事件委托&#xff08;Event Delegation&#xff09;是一种用于处理事件的技术&#xff0c;它利用了事件冒泡&#xff08;Event Bubbling&#xff09;的特性。通过事件委托&#xff0c;你可以将事件监听器添加到一个父元素上&#xff0c;而不是每个子…

如何恢复未保存/误删除的Excel文档?

想象一下&#xff0c;您已经在一个非常重要的 Excel 上工作了几个小时&#xff0c;而您的计算机卡住了&#xff0c;您必须重新启动计算机。Excel 文件未保存/误删除&#xff0c;您只是因为忘记点击保存按钮而损失了数小时的工作时间。但是&#xff0c;当您意识到一小时前在 Exc…

【Linux】如何优雅的检查Linux上的用户登录、关机和重启日志

在诸如Ubuntu、Debian、Linux Mint、Fedora和Red Hat等广受欢迎的Linux发行版中&#xff0c;系统会忠实记录用户的登录、关机、重启以及运行时长信息。这些信息对管理员调查事件、排查故障或汇总用户活动报告极为宝贵。 Linux系统及应用程序日志通常保存在/var/log/目录下&…

DDL—表—数据类型—日期时间类型相关语法

&#xff08;1&#xff09;表格如下&#xff1a; 类型大小范围格式描述DATE31000-01-01 至 9999-12-31YYYY-MM-DD日期值&#xff08;年月日&#xff09;TIME3-838:59:59 至 838:59:59HH:MM:SS时间值或持续时间&#xff08;时分秒&#xff09;YEAR11901 至 2155YYYY年份值DATET…

Makefile学习笔记17|u-boot顶层Makefile03

Makefile学习笔记17|u-boot顶层Makefile03 希望看到这篇文章的朋友能在评论区留下宝贵的建议来让我们共同成长&#xff0c;谢谢。 这里是目录 美化打印信息 # Do not print "Entering directory ...", # but we want to display it when entering to the output di…

LabVIEW常用开发架构有哪些

LabVIEW常用开发架构有多种&#xff0c;每种架构都有其独特的特点和适用场合。以下是几种常用的开发架构及其特点和适用场合&#xff1a; 1. 单循环架构 特点&#xff1a; 简单易用适用于小型应用将所有代码放在一个循环中 适用场合&#xff1a; 简单的数据采集和处理任务…

Docker CIG使用

Docker CIG是什么 CIG为&#xff1a;CAdvisor监控收集、InfluxDB存储数据、Granfana图表展示 这个组合是一个常见的监控 Docker 容器的解决方案,它包括以下三个组件: cAdvisor (Container Advisor): cAdvisor 是一个开源的容器资源监控和性能分析工具。它能够收集有关正在运行的…

【Python001】python批量下载、插入与读取Oracle中图片数据(已更新)

1.熟悉、梳理、总结数据分析实战中的python、oracle研发知识体系 2.欢迎点赞、关注、批评、指正,互三走起来,小手动起来! 文章目录 1.背景说明2.环境搭建2.1 参考链接2.2 `oracle`查询测试代码3.数据请求与插入3.1 `Oracle`建表语句3.2 `Python`代码实现3.3 效果示例4.问题链…