我是靠谱客的博主 唠叨萝莉,最近开发中收集的这篇文章主要介绍range tree java_Java递归生成树形菜单数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.example.api.Utils.TreeTools;

import com.example.api.Model.TreeMenuTable;

import java.util.ArrayList;

import java.util.List;

/**

* 导航菜单工具类

*/

public class TreeTools {

/**

* 递归生成方法

* @param {menuParentId}

* @param {menus}

* @return

*/

public static List getTreeList(List children) {

List resultList = new ArrayList<>();

//获取顶层元素集合

int parentCode;

for (TreeMenuTable entity : children) {

parentCode = entity.getMenuParentId();

//顶层元素的parentCode==null或者为0

if (parentCode == 0) {

resultList.add(entity);

}

}

//获取每个顶层元素的子数据集合

for (TreeMenuTable entity : resultList) {

entity.setChildren(getSubList(entity.getMenuId(), children));

}

return resultList;

}

/**

* 获取子数据集合

*

* @param id

* @param entityList

* @return

* @author Lastly

* @date 2020年12月29日

*/

private static List getSubList(int id, List entityList) {

List children = new ArrayList<>();

int parentId;

//子集的直接子对象

for (TreeMenuTable entity : entityList) {

parentId = entity.getMenuParentId();

if (id == parentId) {

children.add(entity);

}

}

//子集的间接子对象

for (TreeMenuTable entity : children) {

entity.setChildren(getSubList(entity.getMenuId(), entityList));

}

//递归退出条件

if (children.size() == 0) {

return null;

}

return children;

}

}

最后

以上就是唠叨萝莉为你收集整理的range tree java_Java递归生成树形菜单数据的全部内容,希望文章能够帮你解决range tree java_Java递归生成树形菜单数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部