最新公告
  • 欢迎您光临码农资源网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!加入我们
  • LeetCode 冥想:回文子串

    leetcode 冥想:回文子串

    回文子串的描述是:

    给定一个字符串 s,返回其中回文子串的数量.

    当向后读与向前读相同时,字符串是回文。

    a 子字符串 是字符串中连续的字符序列。

    例如:

    input: s = "abc"
    output: 3
    explanation: three palindromic strings: "a", "b", "c".
    

    或者:

    input: s = "aaa"
    output: 6
    explanation: six palindromic strings: "a", "a", "a", "aa", "aa", "aaa".
    

    此外,约束表明s 由小写英文字母组成。


    在上一个问题中,我们找到了找到给定字符串中最长回文子串的解决方案。为了找到回文,我们使用了“中心扩展”方法,其中我们假设每个字符都是子字符串的中间字符。因此,我们移动了左右指针。

    注意
    使用两个指针方法检查回文很容易,我们之前已经在有效回文中见过。

    计算一个子串中的回文数可能如下所示:

    function countpalindromesinsubstr(s: string, left: number, right: number): number {
      let result = 0;
      while (left >= 0 && right 
    
    
    
    <p>只要我们在边界内(左 >= 0 && 右 
    
    </p><p>但是,一旦您考虑一下,指针初始化的索引很重要。例如,如果我们将字符串“abc”传递给 countpalindromesinsubstr,左指针位于 0,而右指针位于最后一个索引 (2),那么我们的结果就是 0。</p>
    
    <p>请记住,我们假设每个字符都是子字符串的中间字符,并且由于每个单个字符也是一个子字符串,因此我们将初始化左指针和右指针以指向字符本身。</p>
    
    <div class="table-wrapper-paragraph"><table>
    <thead><tr>
    <th>注意</th>
    </tr></thead>
    <tbody><tr>
    <td>字符本身被认为是回文,即“abc”具有三个回文子串:'a','b'和'c'。</td>
    </tr></tbody>
    </table></div>
    
    
    <hr><p>让我们看看这个过程是什么样的。</p>
    
    <p>如果我们有字符串“abc”,我们首先假设“a”是子字符串的中间:<br></p>
    
    <pre class="brush:php;toolbar:false">"abc"
    
    left = 0
    right = 0
    currentsubstr = 'a'
    
    totalpalindromes = 1 // a single character is a palindrome
    

    然后,我们尝试扩展子字符串,看看 ‘a’ 是否可以成为另一个子字符串的中间字符:

    "abc"
    
    left = -1
    right = 1
    currentsubstr = undefined
    
    totalpalindromes = 1
    

    现在我们的左指针超出了界限,我们可以跳转到下一个字符:

    "abc"
    
    left = 1
    right = 1
    currentsubstr = 'b'
    
    totalpalindromes = 2
    

    现在,我们将更新我们的指针,事实上,’b’ 可以是另一个子字符串的中间字符:

    s = "abc"
    
    left = 0
    right = 2
    currentsubstr = 'abc'
    
    totalpalindromes = 2
    

    嗯,currentsubstr 不是回文。现在我们再次更新我们的指针:

    s = "abc"
    
    left = -1
    right = 3
    currentsubstr = undefined
    
    totalpalindromes = 2
    

    而且,我们又出界了。是时候继续下一个角色了:

    s = "abc"
    
    left = 2
    right = 2
    currentsubstr = 'c'
    
    totalpalindromes = 3
    

    移动指针,我们又出界了:

    s = "abc"
    
    left = 1
    right = 3
    currentsubstr = undefined
    
    totalpalindromes = 3
    

    现在我们已经遍历了每个字符,在本例中,总回文数的最终结果是 3。这意味着“abc”中有 3 个回文子串。

    但是,有一个重要的警告:每次我们假设一个字符作为中间并初始化其左侧和右侧的两个指针时,我们都试图只找到奇数长度的回文。为了缓解这种情况,我们可以不考虑单个字符作为中间,而是考虑两个字符作为中间并像之前那样展开。

    在这种情况下,查找偶数长度子串回文的过程将如下所示 – 最初,我们的右指针为 left + 1:

    s = "abc"
    
    left = 0
    right = 1
    currentsubstr = 'ab'
    
    totalpalindromes = 0
    

    然后,我们将更新我们的指针:

    s = "abc"
    
    left = -1
    right = 2
    currentsubstr = undefined
    
    totalpalindromes = 0
    

    超出范围。进入下一个角色:

    s = "abc"
    
    left = 1
    right = 2
    currentsubstr = 'bc'
    
    totalpalindromes = 0
    

    更新我们的指针:

    s = "abc"
    
    left = 0
    right = 3
    currentsubstr = undefined
    
    totalpalindromes = 0
    

    右指针超出范围,所以我们继续下一个字符:

    s = "abc"
    
    left = 2
    right = 3
    currentsubstr = undefined
    
    totalpalindromes = 0
    

    我们再次出界,我们已经完成了每个角色。在这个例子中,偶数长度的子串没有回文。


    我们可以编写一个函数来计算每个子串中的回文数:

    function countpalindromes(s: string, isoddlength: boolean): number {
      let result = 0;
      for (let i = 0; i 
    
    
    
    <p>在我们的 main 函数中,我们可以对奇数和偶数长度的子串调用两次 countpalindromes,并返回结果:<br></p>
    
    <pre class="brush:php;toolbar:false">function countsubstrings(s: string): number {
      let result = 0;
      result += countpalindromes(s, true); // odd-length palindromes
      result += countpalindromes(s, false); // even-length palindromes
    
      return result;
    }
    

    总的来说,我们的解决方案如下所示:

    function countSubstrings(s: string): number {
      let result = 0;
      result += countPalindromes(s, true); // Odd-length palindromes
      result += countPalindromes(s, false); // Even-length palindromes
    
      return result;
    }
    
    function countPalindromes(s: string, isOddLength: boolean): number {
      let result = 0;
      for (let i = 0; i = 0 && right 
    
    
    
    <h4>
      
      
      时间和空间复杂度
    </h4>
    
    <p>时间复杂度为<link rel="stylesheet" href="https://dev.to/assets/katex-e2c941bc70d758b1651b592985b41c97281f578aa1cd647c66152eebf4fe0a69.<a%20style='color:#f60;%20text-decoration:underline;'%20href=" https: target="_blank">css">
    
    
      <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/math/mathml"><semantics><mrow><mi>o</mi><mo stretchy="false">(</mo><msup><mi>n</mi><mn>2</mn></msup><mo stretchy="false">)</mo></mrow>o(n^2) </semantics></math><span class="base"><span class="strut" style="height:1.0641em;vertical-align:-0.25em;">o(<span class="mord mathnormal">n<span class="vlist-t"><span class="vlist-r"> <span class="vlist" style="height:0.8141em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"><span class="mord mtight">2</span></span></span></span></span> </span></span>)</span></span></span>
    </span>
     当我们遍历每个字符的每个子字符串时(countpalindromes 正在做一个 
    
      <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/math/mathml"><semantics><mrow><mi>o</mi><mo stretchy="false">(</mo><msup><mi>n</mi><mn>2</mn></msup><mo stretchy="false">)</mo></mrow>o(n^2) </semantics></math><span class="base"><span class="strut" style="height:1.0641em;vertical-align:-0.25em;">o(<span class="mord mathnormal">n<span class="vlist-t"><span class="vlist-r"> <span class="vlist" style="height:0.8141em;"><span style="top:-3.063em;margin-right:0.05em;"><span class="pstrut" style="height:2.7em;"><span class="mord mtight">2</span></span></span></span></span> </span></span>)</span></span></span>
    </span>
     操作,我们分别调用两次<em></em>。)<br>
    空间复杂度为 
    
      <span class="katex"><span class="katex-mathml"><math xmlns="http://www.w3.org/1998/math/mathml"><semantics><mrow><mi>o</mi><mo stretchy="false">(</mo><mn>1</mn><mo stretchy="false">)</mo></mrow>o(1) </semantics></math><span class="base"><span class="strut" style="height:1em;vertical-align:-0.25em;">o(1)</span></span></span>
    </span>
     因为我们没有额外的数据结构,其大小会随着输入大小而增长。</p>
    
    
    <hr><p>接下来是名为“解码方式”的问题。在那之前,祝您编码愉快。</p>
    
    
              
    
                
      
    
                
            
    想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
    本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
    如有侵权请发送邮件至1943759704@qq.com删除

    码农资源网 » LeetCode 冥想:回文子串
    • 7会员总数(位)
    • 25846资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 294稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情