【问题标题】:print departments hierarchy to a table将部门层次结构打印到表中
【发布时间】: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&lt;String&gt; 对其进行排序,以便顺序为 [00, 00-01, 00-01 -01, 00-01-02, 00-02 ... ] 然后在打印时根据字符串包含的- 的数量对齐部门代码?
  • @M.Shaw Dept.的示例名称只是为了方便,'-'不是强制性的,名称长度不规则变化。
  • 你用的是什么 rdbms?
  • 如果'-'不是强制性的,你用什么来区分层级?只是字符串中的值?无论您有还是没有分隔符,它总是 2 位数字吗?
  • @bphilipnyc 层级关系由部门-上级部门对确定。

标签: java sql algorithm hierarchy


【解决方案1】:

您没有注明您使用的是什么 RDBMS,但如果它恰好是 MS SQL Server 或某些版本的 Oracle(请参阅下面的编辑),并且仅作为我们这些使用 T-SQL 并感兴趣的人的服务在这个问题中,您可以使用recursive CTE 在 SQL Server 中完成此操作。

编辑:Oracle(我的经验非常非常少)似乎也支持递归,包括自 11g 第 2 版以来的递归 CTE。See this question for more information

鉴于此设置:

CREATE TABLE hierarchy
    ([Dept] varchar(13), [superiorDept] varchar(12))
;

INSERT INTO hierarchy
    ([Dept], [superiorDept])
VALUES
    ('00',NULL),
    ('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')
;

这个递归 CTE:

WITH cte AS (
SELECT 
  Dept,
  superiorDept,
  0 AS depth,
  CAST(Dept AS NVARCHAR(MAX)) AS sort
FROM hierarchy h
WHERE superiorDept IS NULL

UNION ALL

SELECT 
  h2.Dept,
  h2.superiorDept,
  cte.depth + 1 AS depth,
  CAST(cte.sort + h2.Dept AS NVARCHAR(MAX)) AS sort
FROM hierarchy h2
INNER JOIN cte ON h2.superiorDept = cte.Dept
)

SELECT 
  CASE WHEN depth = 0 THEN Dept END AS TopTier,
  CASE WHEN depth = 1 THEN Dept END AS Tier2,
  CASE WHEN depth = 2 THEN Dept END AS Tier3,
  CASE WHEN depth = 3 THEN Dept END AS Tier4
FROM cte
ORDER BY sort

将呈现所需的输出:

 TopTier    Tier2   Tier3     Tier4
 00 
            00-01   
                    00-01-01
                    00-01-02
                    00-01-03
            00-02
                    00-02-01
                    00-02-03
                              00-02-03-01

Here is a SQLFiddle to demonstrate

无论邻接列表中涉及的两列的内容或类型如何,这都应该有效。只要父值与 id 值匹配,CTE 生成深度和排序信息应该没有问题。

完全在 SQL 中执行此操作的唯一警告是您必须手动定义一组列数,但在处理 SQL 时几乎总是如此。您可能希望生成 CTE,然后将已排序的结果传递给您的程序并使用深度信息来简化列操作。

【讨论】:

  • 太棒了!我为 Oracle DB 改编了你的脚本,它就像一个魅力!你应该得到赏金!
【解决方案2】:

这是一个基于您的数据的测试用例,它以表格方式打印部门,尝试运行它,看看会发生什么

package test;

import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

public class DeptHierachy {
    public Map<String,List<String>> deptMap= new HashMap<>();
    public static void main(String[] args) {
        TreeNode tn=new TreeNode("00");
        tn.addChildTo("00-01", "00");
        tn.addChildTo("00-02", "00");
        tn.addChildTo("00-01-01", "00-01");
        tn.addChildTo("00-01-02", "00-01");
        tn.addChildTo("00-01-03", "00-01");
        tn.addChildTo("00-02-01", "00-02");
        tn.addChildTo("00-02-03", "00-02");
        tn.addChildTo("00-02-03-01", "00-02-03");
        tn.print();
        //System.out.println("max height=" + tn.maxHeigth());
    }



    public static class TreeNode {
          public String value;
          public List<TreeNode> children = new LinkedList<>();

          public TreeNode(String rootValue) {
            value = rootValue;
          }

          public boolean addChildTo(String childName, String parentName) {
              if (parentName.equals(value)) {
                  for (TreeNode child:children) {
                      if (child.getValue().equals(childName)) {
                          throw new IllegalArgumentException(parentName + " already has a child named " + childName);
                      }
                  }
                  children.add(new TreeNode(childName));
                  return true;
              } else {
                  for (TreeNode child:children) {
                      if (child.addChildTo(childName, parentName)) {
                          return true;
                      }
                  }
              }
              return false;
          }

        public String getValue() {
            return value;
        }

        public void print() {
            int maxHeight=maxHeigth();
            System.out.printf("|%-20.20s",value);

            for (int i=0;i<maxHeight-1;i++) {
                System.out.printf("|%-20.20s","");
            }
            System.out.println("|");
            for (TreeNode child:children) {
                child.print(1,maxHeight);
            }
        }

        public void print(int level, int maxHeight) {
            for (int i=0;i<level;i++) {
                System.out.printf("|%-20.20s","");
            }
            System.out.printf("|%-20.20s",value);
            for (int i=level;i<maxHeight-1;i++) {
                System.out.printf("|%-20.20s","");
            }
            System.out.println("|");
            for (TreeNode child:children) {
                child.print(level+1,maxHeight);
            }
        }

        public int maxHeigth() {
            int localMaxHeight=0;
            for (TreeNode child:children) {
                int childHeight = child.maxHeigth();
                if (localMaxHeight < childHeight) {
                    localMaxHeight = childHeight;
                }
            }
            return localMaxHeight+1;
        }
    }   

}

【讨论】:

    【解决方案3】:

    遍历计数- 字符的值。最大 - 字符数 +1 是表列数。值大小是行数。

    您可以定义一个矩阵,例如String[][] 表。

    对于每个值,您都可以找到列(计算字符串值中的- 字符)。 现在要查找行,您应该检查上一列以查找父字符串。

    如果找到它,只需在找到的父行向下移动所有其余行之后插入一个新行。

    如果没有找到父字符串,首先插入父字符串(基于childParentMap)。

    如果 parent 为 null,则在末尾插入一个新行。

    【讨论】:

      【解决方案4】:
      import java.util.LinkedList;
      import java.util.List;
      
      public class TreeNode {
        private String value;
        private int depth;
        private List children = new LinkedList<TreeNode>();
      
        public TreeNode(String rootValue, int depth) {
            value = rootValue;
            this.depth = depth;
        }
      
      
        public boolean add(String parent, String child) {
            if (this.value.equals(parent)) {
                this.children.add(new TreeNode(child, depth + 1));
                return true;
            } else {
                for (TreeNode node : children) {
                    if (node.add(parent, child)) {
                        return true;
                    }
                }
            }
            return false;
        }
      
        public String print() {
            StringBuilder sb = new StringBuilder();
            sb.append(format());
            for (TreeNode child : children) {
                sb.append(child.print())
            }
            return sb.toString();
        }
      
        public String format() {
            // Format this node according to depth;
        }
      
      }
      

      先打印 Top Dept.,然后在 Top Dept. 上调用 print()

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 2021-12-14
        • 2013-08-20
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多