//상위 노드가 존재하지 않는 루트 노드List<DeptVO>root=rows.stream().filter(ele->Objects.equals(ele.getId(),ele.getParentId())).toList();//루트 노드를 제외한 자식 노드 목록//removeIf 때문에 ArrayList로 사용ArrayList<DeptVO>leaf=rows.stream().filter(ele->!Objects.equals(ele.getId(),ele.getParentId())).collect(Collectors.toCollection(ArrayList::new));//평탄화된 데이터 목록을 저장할 리스트List<DeptVO>result=newArrayList<>();
중첩 데이터 생성하기
/**
* 평탄 데이터 생성
* @param root 루트 데이터
* @param leaf 전체 데이터
* @param res 최종 결과를 저장할 목록
*/publicvoidgetFlattenedRows(List<DeptVO>root,ArrayList<DeptVO>leaf,List<DeptVO>res){for(DeptVOrow:root){res.add(row);//상위 행 저장if(leaf.isEmpty()){continue;}leaf.removeIf(ele->Objects.equals(row.getId(),ele.getId()));//처리 완료한 데이터 삭제List<DeptVO>children=leaf.stream().filter(ele->Objects.equals(row.getId(),ele.getParentId())).sorted(Comparator.comparing(DeptVO::getAlign).thenComparing(DeptVO::getId)).toList();if(children.isEmpty()){continue;}children.forEach(child->{child.setLevel(row.getLevel()+1);});getFlattenedRows(children,leaf,res);//재귀 호출}}
실제 사용
List<DeptVO>root=rows.stream().filter(ele->Objects.equals(ele.getId(),ele.getParentId())).toList();ArrayList<DeptVO>leaf=rows.stream().filter(ele->!Objects.equals(ele.getId(),ele.getParentId())).collect(Collectors.toCollection(ArrayList::new));List<DeptVO>result=newArrayList<>();this.getFlattenedRows(root,leaf,result);//평탄화 진행