你需要采用前序遍历的方式,将一个二叉树转换成一个由括号和整数组成的字符串。
空节点则用一对空括号 “()” 表示。而且你需要省略所有不影响字符串与原始二叉树之间的一对一映射关系的空括号对。
示例 1:
输入: 二叉树: [1,2,3,4]
1
/ \
2 3
/
4
输出: “1(2(4))(3)”
解释: 原本将是“1(2(4)())(3())”,
在你省略所有不必要的空括号对之后,
它将是“1(2(4))(3)”。
示例 2:
输入: 二叉树: [1,2,3,null,4]
1
/ \
2 3
\
4
输出: “1(2()(4))(3)”
解释: 和第一个示例相似,
除了我们不能省略第一个对括号来中断输入和输出之间的一对一映射关系。
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
StringBuilder res = new StringBuilder();
public String tree2str(TreeNode root) {
if (root == null) return "";
dfs(root);
return res.substring(1, res.length() - 1);
}
void dfs(TreeNode root) {
if (root == null) return;
res.append('(');
res.append(root.val);
//判断左右子树情况
if (root.left != null) dfs(root.left);
else if (root.right != null) res.append("()");
dfs(root.right);
res.append(')');
}
}
迭代
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
//因为我们得判断入栈添加"(", 出栈添加")", 所以加入set
public String tree2str(TreeNode root) {
if (root == null) return "";
StringBuilder res = new StringBuilder();
Deque<TreeNode> stk = new LinkedList<>();
Set<TreeNode> set = new HashSet<>();
stk.addLast(root);
while (!stk.isEmpty()) {
root = stk.pollLast();
//如果是出栈就是添加")"
if (set.contains(root))
res.append(")");
else {
//需要入队两次, 确保第二次是弹出得时候加上")"
stk.addLast(root);
res.append("(");
res.append(root.val);
//同样判断左右子树情况
if (root.right != null) stk.addLast(root.right);
if (root.left != null) stk.addLast(root.left);
else if (root.right != null) res.append("()");
set.add(root);
}
}
return res.substring(1, res.length() - 1);
}
}