java.lang.Object
g1001_1100.s1028_recover_a_tree_from_preorder_traversal.Solution

public class Solution extends Object
1028 - Recover a Tree From Preorder Traversal.<p>Hard</p> <p>We run a preorder depth-first search (DFS) on the <code>root</code> of a binary tree.</p> <p>At each node in this traversal, we output <code>D</code> dashes (where <code>D</code> is the depth of this node), then we output the value of this node. If the depth of a node is <code>D</code>, the depth of its immediate child is <code>D + 1</code>. The depth of the <code>root</code> node is <code>0</code>.</p> <p>If a node has only one child, that child is guaranteed to be <strong>the left child</strong>.</p> <p>Given the output <code>traversal</code> of this traversal, recover the tree and return <em>its</em> <code>root</code>.</p> <p><strong>Example 1:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2019/04/08/recover-a-tree-from-preorder-traversal.png" alt="" /></p> <p><strong>Input:</strong> traversal = &ldquo;1-2&ndash;3&ndash;4-5&ndash;6&ndash;7&rdquo;</p> <p><strong>Output:</strong> [1,2,5,3,4,6,7]</p> <p><strong>Example 2:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2019/04/11/screen-shot-2019-04-10-at-114101-pm.png" alt="" /></p> <p><strong>Input:</strong> traversal = &ldquo;1-2&ndash;3&mdash;4-5&ndash;6&mdash;7&rdquo;</p> <p><strong>Output:</strong> [1,2,5,3,null,6,null,4,null,7]</p> <p><strong>Example 3:</strong></p> <p><img src="https://assets.leetcode.com/uploads/2019/04/11/screen-shot-2019-04-10-at-114955-pm.png" alt="" /></p> <p><strong>Input:</strong> traversal = &ldquo;1-401&ndash;349&mdash;90&ndash;88&rdquo;</p> <p><strong>Output:</strong> [1,401,null,349,88,90]</p> <p><strong>Constraints:</strong></p> <ul> <li>The number of nodes in the original tree is in the range <code>[1, 1000]</code>.</li> <li><code>1 <= Node.val <= 10<sup>9</sup></code></li> </ul>
  • Constructor Details

    • Solution

      public Solution()
  • Method Details

    • recoverFromPreorder

      public TreeNode recoverFromPreorder(String traversal)