LeetCode 536. Construct Binary Tree from Stringnode
You need to construct a binary tree from a string consisting of parenthesis and integers.code
The whole input represents a binary tree. It contains an integer followed by zero, one or two pairs of parenthesis. The integer represents the root's value and a pair of parenthesis contains a child binary tree with the same structure.ip
You always start to construct the left child node of the parent first if it exists.leetcode
Example:
Input: "4(2(3)(1))(6(5))"
Output: return the tree root node representing the following tree:字符串
4 / \ 2 6 / \ / 3 1 5
Note:
There will only be '('
, ')'
, '-'
and '0'
~ '9'
in the input string.
An empty tree is represented by ""
instead of ()"
.get
题意:从一个带括号的字符串,构建一颗二叉树。input
解题思路: 本题仔细看字符串能够发现,每一个root,left,right
都是以root.val(left.val)(right.val)
展现的。其中当left = null
而right != null
时,left展现为一个空的括号'()'
。同时要考虑负数的状况,因此在取数字的时候,必须注意index所在位置。咱们用一个stack存储当前构建好的TreeNode,每次遇到数字时,将数字构建成TreeNode,查看是否为stack为空,不为空,则查看stack中顶层元素的左子树是否已经有了,若是没有,那当前新构建的TreeNode就是它的左边的孩子,不然就是顶层元素的右孩子。遇到')'
则从栈中pop出元素。最后stack中的元素就是root,返回root栈顶元素便可。string
代码以下:it
public TreeNode str2tree(String s) { if (s == null || s.length() == 0) { return null; } Stack<TreeNode> stack = new Stack<>(); for(int i = 0; i < s.length(); i++) { char c = s.charAt(i); if (c == ')') { stack.pop(); } else { if (c >= '0' && c <= '9' || c == '-') { int start = i; while(i + 1 < s.length() && s.charAt(i + 1) >= '0' && s.charAt(i + 1) <= '9') { i++; } TreeNode node = new TreeNode(Integer.valueOf(s.substring(start, i + 1))); if (!stack.isEmpty()) { TreeNode parent = stack.peek(); if (parent.left != null) { parent.right = node; } else { parent.left = node; } } stack.push(node); } } } if(stack.isEmpty()) { return null; } return stack.peek();