【发布时间】:2015-06-30 01:20:51
【问题描述】:
我有一个部门的关系表如下:
+---------------+----------------+
| Dept. | superior Dept. |
+---------------+----------------+
| "00-01" | "00" |
| "00-02" | "00" |
| "00-01-01" | "00-01" |
| "00-01-02" | "00-01" |
| "00-01-03" | "00-01" |
| "00-02-01" | "00-02" |
| "00-02-03" | "00-02" |
| "00-02-03-01" | "00-02-03" |
+---------------+----------------+
现在我想按照他们的等级列出他们:
+-----------+--------------+--------------+--------------+
| Top Dept. | 2-tier Dept. | 3-tire Dept. | 4-tier Dept. |
+-----------+--------------+--------------+--------------+
| 00 | | | |
| | 00-01 | | |
| | | 00-01-01 | |
| | | 00-01-02 | |
| | 00-02 | | |
| | | 00-02-01 | |
| | | 00-02-03 | |
| | | | 00-02-03-01 |
+-----------+--------------+--------------+--------------+
我可以使用以下代码构建关系树:
TreeNode.java
import java.util.LinkedList;
import java.util.List;
public class TreeNode {
public String value;
public List children = new LinkedList();
public TreeNode(String rootValue) {
value = rootValue;
}
}
PairsToTree.java
import java.util.*;
public class PairsToTree {
public static void main(String[] args) throws Exception {
// Create the child to parent hash map
Map <String, String> childParentMap = new HashMap<String, String>(8);
childParentMap.put("00-01", "00");
childParentMap.put("00-02", "00");
childParentMap.put("00-01-01", "00-01");
childParentMap.put("00-01-02", "00-01");
childParentMap.put("00-01-03", "00-01");
childParentMap.put("00-02-01", "00-02");
childParentMap.put("00-02-03", "00-02");
childParentMap.put("00-02-03-01", "00-02-03");
// All children in the tree
Collection<String> children = childParentMap.keySet();
// All parents in the tree
Collection<String> values = childParentMap.values();
// Using extra space here as any changes made to values will
// directly affect the map
Collection<String> clonedValues = new HashSet();
for (String value : values) {
clonedValues.add(value);
}
// Find parent which is not a child to any node. It is the
// root node
clonedValues.removeAll(children);
// Some error handling
if (clonedValues.size() != 1) {
throw new Exception("More than one root found or no roots found");
}
String rootValue = clonedValues.iterator().next();
TreeNode root = new TreeNode(rootValue);
HashMap<String, TreeNode> valueNodeMap = new HashMap();
// Put the root node into value map as it will not be present
// in the list of children
valueNodeMap.put(root.value, root);
// Populate all children into valueNode map
for (String child : children) {
TreeNode valueNode = new TreeNode(child);
valueNodeMap.put(child, valueNode);
}
// Now the map contains all nodes in the tree. Iterate through
// all the children and
// associate them with their parents
for (String child : children) {
TreeNode childNode = valueNodeMap.get(child);
String parent = childParentMap.get(child);
TreeNode parentNode = valueNodeMap.get(parent);
parentNode.children.add(childNode);
}
// Traverse tree in level order to see the output. Pretty
// printing the tree would be very
// long to fit here.
Queue q1 = new ArrayDeque();
Queue q2 = new ArrayDeque();
q1.add(root);
Queue<TreeNode> toEmpty = null;
Queue toFill = null;
while (true) {
if (false == q1.isEmpty()) {
toEmpty = q1;
toFill = q2;
} else if (false == q2.isEmpty()) {
toEmpty = q2;
toFill = q1;
} else {
break;
}
while (false == toEmpty.isEmpty()) {
TreeNode node = toEmpty.poll();
System.out.print(node.value + ", ");
toFill.addAll(node.children);
}
System.out.println("");
}
}
}
但想不通 了解如何将输出格式化为类似于表格。或者是否有 sql 语句/存储过程(如this question)来执行此操作?
编辑:为了方便起见,部门名称只是一个示例,它可以是任意字符串。
【问题讨论】:
-
为什么不只是将每个部门而不考虑层级添加到一个
List中,然后编写一个自定义Comparator<String>对其进行排序,以便顺序为 [00, 00-01, 00-01 -01, 00-01-02, 00-02 ... ] 然后在打印时根据字符串包含的-的数量对齐部门代码? -
@M.Shaw Dept.的示例名称只是为了方便,'-'不是强制性的,名称长度不规则变化。
-
你用的是什么 rdbms?
-
如果'-'不是强制性的,你用什么来区分层级?只是字符串中的值?无论您有还是没有分隔符,它总是 2 位数字吗?
-
@bphilipnyc 层级关系由部门-上级部门对确定。
标签: java sql algorithm hierarchy