mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
42 lines
1.6 KiB
HTML
42 lines
1.6 KiB
HTML
<p>You are given the <code>root</code> of a binary tree where each node has a value in the range <code>[0, 25]</code> representing the letters <code>'a'</code> to <code>'z'</code>.</p>
|
|
|
|
<p>Return <em>the <strong>lexicographically smallest</strong> string that starts at a leaf of this tree and ends at the root</em>.</p>
|
|
|
|
<p>As a reminder, any shorter prefix of a string is <strong>lexicographically smaller</strong>.</p>
|
|
|
|
<ul>
|
|
<li>For example, <code>"ab"</code> is lexicographically smaller than <code>"aba"</code>.</li>
|
|
</ul>
|
|
|
|
<p>A leaf of a node is a node that has no children.</p>
|
|
|
|
<p> </p>
|
|
<p><strong>Example 1:</strong></p>
|
|
<img alt="" src="https://assets.leetcode.com/uploads/2019/01/30/tree1.png" style="width: 534px; height: 358px;" />
|
|
<pre>
|
|
<strong>Input:</strong> root = [0,1,2,3,4,3,4]
|
|
<strong>Output:</strong> "dba"
|
|
</pre>
|
|
|
|
<p><strong>Example 2:</strong></p>
|
|
<img alt="" src="https://assets.leetcode.com/uploads/2019/01/30/tree2.png" style="width: 534px; height: 358px;" />
|
|
<pre>
|
|
<strong>Input:</strong> root = [25,1,3,1,3,0,2]
|
|
<strong>Output:</strong> "adz"
|
|
</pre>
|
|
|
|
<p><strong>Example 3:</strong></p>
|
|
<img alt="" src="https://assets.leetcode.com/uploads/2019/02/01/tree3.png" style="height: 490px; width: 468px;" />
|
|
<pre>
|
|
<strong>Input:</strong> root = [2,2,1,null,1,0,null,0]
|
|
<strong>Output:</strong> "abc"
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li>The number of nodes in the tree is in the range <code>[1, 8500]</code>.</li>
|
|
<li><code>0 <= Node.val <= 25</code></li>
|
|
</ul>
|