基于递归算法,树形结构数据下业务场景,封装解决方法
本文源码:github·点这里 || gitee·点这里
一、递归算法
1、概念简介
递归算法的核心思想是通过将问题重复分解为同类的或其子问题的方式,从而可以使用统一的解决方式。很多编程语言支持方法或函数自我调用,简单的说,就是在函数或方法体内,自身可以再次调用自身的方法结构。
2、基础案例
这里通过递归的方式,计算阶乘、求和等相关逻辑。
public class demo01 { public static void main(string[] args) { int result1 = factorial(5); system.out.println(result1); int result2 = sum(100) ; system.out.println(result2); } // 递归阶乘 private static int factorial (int n){ if(n <= 1){ return n ; }else{ return n*factorial(n-1); } } // 递归求和 private static int sum (int f){ if(f <= 1){ return f ; }else{ return f + sum(f-1); } } }
3、注意事项
- 使用方法
使用递归的时候,要明确业务逻辑可以分解为重复相同的问题,且要清楚的知道递归的结束条件,不然很容易出现死循环。
- 优缺点描述
递归算法的代码比较简洁,可读性较好;但是在实际的业务处理中会出现多次的重复调用,如果处理不好,很容易出现*error报错。
二、树状结构
1、概念描述
树形结构是一层次的嵌套结构。一个树形结构的外层和内层有相似的结构,所以这种结构多可以递归的表示。
2、图解和定义
- 根节点
树的根源,没有父节点的节点,如上图a节点。
- 兄弟节点
拥有同一父节点的子节点。如图b与c与d节点。
- 叶子节点
没有子节点的节点。如图e和f等节点。
- 分支度
指一个节点有几个子节点。 如:a为3、b为2。
- 节点深度
指从该节点到某一节点的最长路径。如图a为2、b为1。
三、应用场景
1、场景描述
基于递归算法下,处理很多树形结构的业务数据。常见的业务场景如下:
- 省市区三级联动查询 ;
- 系统模块、菜单、按钮的授权 ;
- 常见的业务数据分类:商品分类等 ;
- 常见各种行业分类细化 ;
2、特殊场景
在管理系统中,对系统模块、菜单、按钮授权操作时候可能会出现如下情况。
假如系统管理员的权限如图所示,但是给到运营人员的权限如下,需要把3号菜单和5号菜单设置为同级别,这时候基本的处理手法就是把3号菜单父级id作为3号菜单和下属功能的权限的根节点,这里把这里当成两颗树进行分别处理,最后合并数据就好。必要时按照配上节点编码,例如node01,node0101,node0102等方式,这里针对这个场景描述,就是希望在处理类似业务时候,思路要开阔,不必拘泥于单个树形结构。业务很多时候都是出人意料甚至是令人生厌,不过这确实就是生活
。
3、工具类封装
这里展示一个树形结构常用的几个封装方法,例如创建树形结构,遍历,判断等。
import java.util.arraylist; import java.util.list; public class threeutil { /** * 递归创建树形结构 */ private static list<threenode> gettree(list<threenode> nodelist, integer parentid) { list<threenode> threenodelist = new arraylist<>() ; for (threenode entity : nodelist) { integer nodeid = entity.getid() ; integer nodeparentid = entity.getparentid() ; if (parentid.intvalue() == nodeparentid.intvalue()) { list<threenode> childlist = gettree(nodelist,nodeid) ; if (childlist != null && childlist.size()>0){ entity.setchildnode(childlist); entity.setchildnodesize(childlist.size()); } threenodelist.add(entity) ; } } return threenodelist ; } /** * 获取指定子节点 */ private static list<threenode> getchildtree (integer id,list<threenode> nodelist){ list<threenode> resultlist = new arraylist<>(); for (threenode entity : nodelist) { if (entity.getparentid().intvalue() == id) { list<threenode> childlist = getchildtree(entity.getid(),nodelist) ; entity.setchildnode(childlist); entity.setchildnodesize(childlist.size()); resultlist.add(entity) ; } } return resultlist ; } /** * 遍历树形结构 */ private static transient list<integer> treeidlist = new arraylist<>() ; private static list<integer> gettreeinfo (list<threenode> treelist){ for (threenode entity : treelist) { if (entity.getchildnodesize()!=null && entity.getchildnodesize()>0){ gettreeinfo(entity.getchildnode()); } treeidlist.add(entity.getid()); } return treeidlist ; } /** * 判断节是否是叶子节点 */ private static boolean haschildnode (integer id,list<threenode> nodelist){ for (threenode entity:nodelist){ if (entity.getparentid().intvalue() == id){ return true ; } } return false ; } public static void main(string[] args) { list<threenode> threenodelist = new arraylist<>() ; threenodelist.add(new threenode(1,"节点a",0)) ; threenodelist.add(new threenode(2,"节点b",1)) ; threenodelist.add(new threenode(3,"节点c",1)) ; threenodelist.add(new threenode(4,"节点d",1)) ; threenodelist.add(new threenode(5,"节点e",2)) ; threenodelist.add(new threenode(6,"节点f",2)) ; // 测试1 list<threenode> gettree = gettree(threenodelist,0) ; system.out.println(gettree); // 测试2 // list<threenode> getchildtree = getchildtree(2,threenodelist) ; // system.out.println(getchildtree); // 测试3 list<integer> treeidlist = gettreeinfo(gettree) ; system.out.println(treeidlist); // 测试4 system.out.println(haschildnode(2,threenodelist)) ; } }
四、源代码地址
github·地址 https://github.com/cicadasmile gitee·地址 https://gitee.com/cicadasmile
上一篇: 福州外语外贸学院综合实力展示:来看它是否值得一读!
下一篇: 使用DOM解析XML文档