Construct String from Binary Tree

林堯彬發表於2020-04-04

You need to construct a string consists of parenthesis and integers from a binary tree with the preorder traversing way.

The null node needs to be represented by empty parenthesis pair "()". And you need to omit all the empty parenthesis pairs that don't affect the one-to-one mapping relationship between the string and the original binary tree.

Example 1:

Input: Binary tree: [1,2,3,4]
       1
     /   \
    2     3
   /    
  4     

Output: "1(2(4))(3)"

Explanation: Originallay it needs to be "1(2(4)())(3()())",
but you need to omit all the unnecessary empty parenthesis pairs.
And it will be "1(2(4))(3)".

 

Example 2:

Input: Binary tree: [1,2,3,null,4]
       1
     /   \
    2     3
     \  
      4 

Output: "1(2()(4))(3)"

Explanation: Almost the same as the first example,
except we can't omit the first parenthesis pair to break the one-to-one mapping relationship between the input and the output.

對於樹,第一步一定要想到用遞迴。
 1 public class Solution {
 2     public String tree2str(TreeNode root) {
 3         if (root == null) return "";
 4         String rootValue = String.valueOf(root.val);
 5         String leftValue = tree2str(root.left);
 6         String rightValue = tree2str(root.right);
 7         
 8         if (leftValue.equals("") && rightValue.equals("")) {
 9             return rootValue;
10         } else if (leftValue.equals("")) {
11             return String.format("%s()(%s)", rootValue, rightValue);
12         } else if (rightValue.equals("")) {
13             return String.format("%s(%s)", rootValue, leftValue);
14         } else {
15             return String.format("%s(%s)(%s)", rootValue, leftValue, rightValue);
16         }
17     }
18 }

 

轉載於:https://www.cnblogs.com/beiyeqingteng/p/11149062.html

相關文章