Skip to content

Commit 20fba15

Browse files
committed
Added README.md file for Construct Binary Tree from Inorder and Postorder Traversal
1 parent b3deef8 commit 20fba15

File tree

1 file changed

+29
-0
lines changed
  • 106-construct-binary-tree-from-inorder-and-postorder-traversal

1 file changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<h2><a href="https://leetcode.com/problems/construct-binary-tree-from-inorder-and-postorder-traversal">Construct Binary Tree from Inorder and Postorder Traversal</a></h2> <img src='https://img.shields.io/badge/Difficulty-Medium-orange' alt='Difficulty: Medium' /><hr><p>Given two integer arrays <code>inorder</code> and <code>postorder</code> where <code>inorder</code> is the inorder traversal of a binary tree and <code>postorder</code> is the postorder traversal of the same tree, construct and return <em>the binary tree</em>.</p>
2+
3+
<p>&nbsp;</p>
4+
<p><strong class="example">Example 1:</strong></p>
5+
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/19/tree.jpg" style="width: 277px; height: 302px;" />
6+
<pre>
7+
<strong>Input:</strong> inorder = [9,3,15,20,7], postorder = [9,15,7,20,3]
8+
<strong>Output:</strong> [3,9,20,null,null,15,7]
9+
</pre>
10+
11+
<p><strong class="example">Example 2:</strong></p>
12+
13+
<pre>
14+
<strong>Input:</strong> inorder = [-1], postorder = [-1]
15+
<strong>Output:</strong> [-1]
16+
</pre>
17+
18+
<p>&nbsp;</p>
19+
<p><strong>Constraints:</strong></p>
20+
21+
<ul>
22+
<li><code>1 &lt;= inorder.length &lt;= 3000</code></li>
23+
<li><code>postorder.length == inorder.length</code></li>
24+
<li><code>-3000 &lt;= inorder[i], postorder[i] &lt;= 3000</code></li>
25+
<li><code>inorder</code> and <code>postorder</code> consist of <strong>unique</strong> values.</li>
26+
<li>Each value of <code>postorder</code> also appears in <code>inorder</code>.</li>
27+
<li><code>inorder</code> is <strong>guaranteed</strong> to be the inorder traversal of the tree.</li>
28+
<li><code>postorder</code> is <strong>guaranteed</strong> to be the postorder traversal of the tree.</li>
29+
</ul>

0 commit comments

Comments
 (0)