1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/找到字符串中所有字母异位词 [VabMRr].html

40 lines
1.6 KiB
HTML
Raw Normal View History

2022-03-27 20:38:29 +08:00
<p>给定两个字符串&nbsp;<code>s</code>&nbsp;<b>&nbsp;</b><code>p</code>,找到&nbsp;<code>s</code><strong>&nbsp;</strong>中所有 <code>p</code>&nbsp;<strong>变位词&nbsp;</strong>的子串,返回这些子串的起始索引。不考虑答案输出的顺序。</p>
<p><strong>变位词 </strong>指字母相同,但排列不同的字符串。</p>
<p>&nbsp;</p>
<p><strong>示例&nbsp;1</strong></p>
2022-03-27 20:38:29 +08:00
<pre>
<strong>输入: </strong>s = &quot;cbaebabacd&quot;, p = &quot;abc&quot;
<strong>输出: </strong>[0,6]
<strong>解释:</strong>
起始索引等于 0 的子串是 &quot;cba&quot;, 它是 &quot;abc&quot; 的变位词。
起始索引等于 6 的子串是 &quot;bac&quot;, 它是 &quot;abc&quot; 的变位词。
</pre>
<p><strong>&nbsp;示例 2</strong></p>
2022-03-27 20:38:29 +08:00
<pre>
<strong>输入: </strong>s = &quot;abab&quot;, p = &quot;ab&quot;
<strong>输出: </strong>[0,1,2]
<strong>解释:</strong>
起始索引等于 0 的子串是 &quot;ab&quot;, 它是 &quot;ab&quot; 的变位词。
起始索引等于 1 的子串是 &quot;ba&quot;, 它是 &quot;ab&quot; 的变位词。
起始索引等于 2 的子串是 &quot;ab&quot;, 它是 &quot;ab&quot; 的变位词。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= s.length, p.length &lt;= 3 * 10<sup>4</sup></code></li>
<li><code>s</code>&nbsp;<code>p</code> 仅包含小写字母</li>
</ul>
<p>&nbsp;</p>
<p>注意:本题与主站 438&nbsp;题相同:&nbsp;<a href="https://leetcode-cn.com/problems/find-all-anagrams-in-a-string/" style="background-color: rgb(255, 255, 255);">https://leetcode-cn.com/problems/find-all-anagrams-in-a-string/</a></p>