mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-03 14:32:54 +08:00
update
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
"translatedContent": "<p>给定两个整数数组 <code>preorder</code> 和 <code>inorder</code> ,其中 <code>preorder</code> 是二叉树的<strong>先序遍历</strong>, <code>inorder</code> 是同一棵树的<strong>中序遍历</strong>,请构造二叉树并返回其根节点。</p>\n\n<p> </p>\n\n<p><strong>示例 1:</strong></p>\n<img alt=\"\" src=\"https://assets.leetcode.com/uploads/2021/02/19/tree.jpg\" style=\"height: 302px; width: 277px;\" />\n<pre>\n<strong>输入</strong><strong>:</strong> preorder = [3,9,20,15,7], inorder = [9,3,15,20,7]\n<strong>输出:</strong> [3,9,20,null,null,15,7]\n</pre>\n\n<p><strong>示例 2:</strong></p>\n\n<pre>\n<strong>输入:</strong> preorder = [-1], inorder = [-1]\n<strong>输出:</strong> [-1]\n</pre>\n\n<p> </p>\n\n<p><strong>提示:</strong></p>\n\n<ul>\n\t<li><code>1 <= preorder.length <= 3000</code></li>\n\t<li><code>inorder.length == preorder.length</code></li>\n\t<li><code>-3000 <= preorder[i], inorder[i] <= 3000</code></li>\n\t<li><code>preorder</code> 和 <code>inorder</code> 均 <strong>无重复</strong> 元素</li>\n\t<li><code>inorder</code> 均出现在 <code>preorder</code></li>\n\t<li><code>preorder</code> <strong>保证</strong> 为二叉树的前序遍历序列</li>\n\t<li><code>inorder</code> <strong>保证</strong> 为二叉树的中序遍历序列</li>\n</ul>\n",
|
||||
"isPaidOnly": false,
|
||||
"difficulty": "Medium",
|
||||
"likes": 1503,
|
||||
"likes": 1505,
|
||||
"dislikes": 0,
|
||||
"isLiked": null,
|
||||
"similarQuestions": "[{\"title\": \"Construct Binary Tree from Inorder and Postorder Traversal\", \"titleSlug\": \"construct-binary-tree-from-inorder-and-postorder-traversal\", \"difficulty\": \"Medium\", \"translatedTitle\": \"\\u4ece\\u4e2d\\u5e8f\\u4e0e\\u540e\\u5e8f\\u904d\\u5386\\u5e8f\\u5217\\u6784\\u9020\\u4e8c\\u53c9\\u6811\"}]",
|
||||
@@ -161,7 +161,7 @@
|
||||
"__typename": "CodeSnippetNode"
|
||||
}
|
||||
],
|
||||
"stats": "{\"totalAccepted\": \"326.6K\", \"totalSubmission\": \"460.5K\", \"totalAcceptedRaw\": 326616, \"totalSubmissionRaw\": 460500, \"acRate\": \"70.9%\"}",
|
||||
"stats": "{\"totalAccepted\": \"327.9K\", \"totalSubmission\": \"462.2K\", \"totalAcceptedRaw\": 327888, \"totalSubmissionRaw\": 462230, \"acRate\": \"70.9%\"}",
|
||||
"hints": [],
|
||||
"solution": null,
|
||||
"status": null,
|
||||
|
Reference in New Issue
Block a user