-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zhangpan
committed
Apr 23, 2023
1 parent
ae82072
commit e9f7fb5
Showing
2 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
dv-commons-base/src/main/java/com/dv/commons/base/tree/ITree.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.dv.commons.base.tree; | ||
|
||
import java.util.Collection; | ||
|
||
public interface ITree<ID>{ | ||
/** | ||
* 获取被依赖节点 | ||
* @return | ||
*/ | ||
ID getId(); | ||
|
||
/** | ||
* 获取依赖节点 | ||
* @return | ||
*/ | ||
ID getParent(); | ||
|
||
|
||
/** | ||
* 获取孩子列表 | ||
* @return | ||
*/ | ||
<T extends ITree<ID>>Collection<T> getChildren(); | ||
|
||
/** | ||
* 设置孩子列表 | ||
* @param children | ||
*/ | ||
<T extends ITree<ID>>void setChildren(Collection<T> children); | ||
} |
80 changes: 80 additions & 0 deletions
80
dv-commons-base/src/main/java/com/dv/commons/base/tree/TreeUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
package com.dv.commons.base.tree; | ||
|
||
import lombok.NonNull; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.HashSet; | ||
import java.util.Set; | ||
|
||
|
||
/** | ||
* 树工具类 | ||
*/ | ||
public class TreeUtil{ | ||
|
||
|
||
/** | ||
* 集合转树结构,注意,使用此方法,则集合元素必须继承ITree接口 | ||
* @param collection 目标集合 | ||
* @return | ||
*/ | ||
public static <ID,T extends ITree<ID>> Collection<T> toTree(@NonNull Collection<T> collection){ | ||
try { | ||
// 找出所有的根节点 | ||
Collection<T> roots = null; | ||
if (collection.getClass().isAssignableFrom(Set.class)) roots = new HashSet<>(); | ||
else roots = new ArrayList<>(); | ||
for (T tree : collection) { | ||
ID o = tree.getParent(); | ||
if (o instanceof String s){ | ||
if (isEmpty(s)){ | ||
roots.add(tree); | ||
} | ||
} else if (o == null){ | ||
roots.add(tree); | ||
} | ||
} | ||
// 从目标集合移除所有的根节点 | ||
collection.removeAll(roots); | ||
// 为根节点添加孩子节点 | ||
for (T tree:roots){ | ||
addChild(tree,collection); | ||
} | ||
return roots; | ||
}catch (Exception e){ | ||
e.printStackTrace(); | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
|
||
private static boolean isEmpty(String s){ | ||
return s == null || s.trim().length() == 0; | ||
} | ||
|
||
public static <ID,T extends ITree<ID>> void addChild(T tree,Collection<T> collection){ | ||
try { | ||
Object id = tree.getId(); | ||
Collection<ITree<ID>> children = tree.getChildren(); | ||
for (T cc:collection){ | ||
ID o = cc.getParent(); | ||
if (id.equals(o)){// 如果当前节点的被依赖值和目标节点的被依赖值相等,则说明,当前节点是目标节点的子节点 | ||
if (children==null) {// 如果目标节点的孩子集合为null,初始化目标节点的孩子集合 | ||
if (collection.getClass().isAssignableFrom(Set.class)){// 如果目标集合是一个set集合,则初始化目标节点的孩子节点集合为set | ||
children = new HashSet<>(); | ||
}else children = new ArrayList<>();// 否则初始化为list | ||
} | ||
// 将当前节点添加到目标节点的孩子节点 | ||
children.add(cc); | ||
// 重设目标节点的孩子节点集合,这里必须重设,因为如果目标节点的孩子节点是null的话,这样是没有地址的,就会造成数据丢失,所以必须重设,如果目标节点所在类的孩子节点初始化为一个空集合,而不是null,则可以不需要这一步,因为java一切皆指针 | ||
tree.setChildren(children); | ||
// 递归添加孩子节点 | ||
addChild(cc,collection); | ||
} | ||
} | ||
} catch (Exception e){ | ||
e.printStackTrace(); | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |