Print Binary Tree

Problem

Print a binary tree in an m * n 2D string array following these rules:

The row number m should be equal to the height of the given binary tree. The column number n should always be an odd number. The root node's value (in string format) should be put in the exactly middle of the first row it can be put. The column and the row where the root node belongs will separate the rest space into two parts (left-bottom part and right-bottom part). You should print the left subtree in the left-bottom part and print the right subtree in the right-bottom part. The left-bottom part and the right-bottom part should have the same size. Even if one subtree is none while the other is not, you don't need to print anything for the none subtree but still need to leave the space as large as that for the other subtree. However, if two subtrees are none, then you don't need to leave space for both of them. Each unused space should contain an empty string "". Print the subtrees following the same rules.

Example 1:

Input:
     1
    /
   2
Output:
[["", "1", ""],
 ["2", "", ""]]

Example 2:

Input:
     1
    / \
   2   3
    \
     4
Output:
[["", "", "", "1", "", "", ""],
 ["", "2", "", "", "", "3", ""],
 ["", "", "4", "", "", "", ""]]

Example 3:

Input:
      1
     / \
    2   5
   / 
  3 
 / 
4 
Output:

[["",  "",  "", "",  "", "", "", "1", "",  "",  "",  "",  "", "", ""]
 ["",  "",  "", "2", "", "", "", "",  "",  "",  "",  "5", "", "", ""]
 ["",  "3", "", "",  "", "", "", "",  "",  "",  "",  "",  "", "", ""]
 ["4", "",  "", "",  "", "", "", "",  "",  "",  "",  "",  "", "", ""]]

Note: The height of binary tree is in the range of [1, 10].

Solution

Recursive Traversal Solution: O(h ∗ 2h) time, where h is the height of given tree

public class Solution {
    public List<List<String>> printTree(TreeNode root) {
        List<List<String>> res = new ArrayList<>();
        int row = getHeight(root);
        int col = (int) Math.pow(2, row) - 1;
        List<String> list = new ArrayList<>();
        for (int i = 0; i < col; i++) list.add("");
        for (int i = 0; i < row; i++) res.add(new ArrayList<>(list));
        fillList(res, root, 0, row, 0, col - 1);
        return res;
    }

    private void fillList(List<List<String>> res, TreeNode node, int curRow, int totalRow, int left, int right) {
        if (node == null || curRow == totalRow) return;
        int index = (left + right) / 2;
        res.get(curRow).set(index, node.val + "");
        fillList(res, node.left, curRow + 1, totalRow, left, index - 1);
        fillList(res, node.right, curRow + 1, totalRow, index + 1, right);
    }

    private int getHeight(TreeNode root) {
        if (root == null) return 0;
        return 1 + Math.max(getHeight(root.left), getHeight(root.right));
    }

}

Analysis

We first need to create a List<String> who has the size equal to number of nodes in the last row
We get it by calculating the tree's height and use the formula col = 2 ^ row - 1
Then we call our helper method fillList() to fill the list with node.val at correct position
Inside the fillList(), we get the index of current node by (left + right) / 2
This is because the index of root is the middle of the list
Then node.left has index in the middle of left sub-tree, and same as node.right
Hence we recursively call the fillList() to fill the list in each row

results matching ""

    No results matching ""