我有一组部门,其中有一级部门、二级部门、三级部门、四级部门,每个部门有id、parentid、name三个属性,id是部门的序号,parentid是上级部门的id,我需要找到某个部门的所有上级部门组成一个部门全称,比如:一级部门/二级部门/三级部门/四级部门,这样的部门全称。需要用递归的方式实现,需要怎么做
4条回答 默认 最新
- SpringBoot中文社区 2021-09-22 18:06关注
递归,循环都可以完成,我帮你写一个
package io.springcloud.test; import java.util.HashMap; import java.util.LinkedList; import java.util.Map; import java.util.stream.Collectors; class Department { private Integer id; private String name; private Integer parentid; public Department(Integer id, String name, Integer parentid) { super(); this.id = id; this.name = name; this.parentid = parentid; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getParentid() { return parentid; } public void setParentid(Integer parentid) { this.parentid = parentid; } } public class MainTest { public static Map<Integer, Department> DATA = new HashMap<>(); static { DATA.put(1, new Department(1, "部门1", null)); DATA.put(2, new Department(2, "部门2", 1)); DATA.put(3, new Department(3, "部门3", 2)); DATA.put(4, new Department(4, "部门4", 3)); DATA.put(5, new Department(5, "部门5", null)); DATA.put(6, new Department(6, "部门6", 1)); DATA.put(7, new Department(7, "部门7", 5)); } public static void main(String[] args) throws Exception { MainTest mainTest = new MainTest(); String result = mainTest.list(3, new LinkedList<>()).stream().map(Department::getName).collect(Collectors.joining("/")); System.out.println(result); // 部门1/部门2/部门3 } /** * 根据ID查询数据 * @param id * @return */ public Department findById(Integer id) { return DATA.get(id); }; /** * 根据ID查询所有父级部门链 * @param id * @param result * @return */ public LinkedList<Department> list(Integer id, LinkedList<Department> result) { if (id == null) { return result; } Department department = findById(id); result.addFirst(department); return list(department.getParentid(), result); } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 PointNet++的onnx模型只能使用一次
- ¥20 西南科技大学数字信号处理
- ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
- ¥30 STM32 INMP441无法读取数据
- ¥15 R语言绘制密度图,一个密度曲线内fill不同颜色如何实现
- ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
- ¥15 用visualstudio2022创建vue项目后无法启动
- ¥15 x趋于0时tanx-sinx极限可以拆开算吗
- ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
- ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。