首頁 > 後端開發 > C++ > 主體

回文子字串查詢在C++中

WBOY
發布: 2023-09-22 09:05:05
轉載
674 人瀏覽過

回文子字串查詢在C++中

在本教程中,我們需要解決給定字串的回文子字串查詢。解決回文子字串查詢比解決 C 中的常規查詢複雜得多。它需要更複雜的程式碼和邏輯。

在本教程中,我們提供了字串 str 和 Q 個子字串 [L...R] 查詢,每個查詢都有兩個值 L 和 R。我們的目標編寫一個程式來解決查詢以確定 substring[L...R] 是否是回文。我們必須確定在 L 到 R 範圍內形成的子字串是否為回文來解決每個查詢。例如-

Let's input "abbbabaaaba" as our input string.
The queries were [3, 13], [3, 11], [5, 8], [8, 12]
It is necessary to determine whether the substring is a plaindrome
A palindrome is "abaaabaaaba" (3, 13) .
It is not possible to write "baaa" as a palindrome [3, 11].
As in [5, 8]: "aaab" cannot be a palindrome.
There is a palindrome in "baaab" ([3, 12]).
登入後複製

求解的方法

樸素方法

這裡,我們必須透過檢查子字串是否在索引範圍L 到R 之間來查找回文因此,我們需要對所有的子字串查詢進行一一檢查,判斷是否是回文。由於有 Q 個查詢,每個查詢需要 0(N) 時間來回答。最壞情況下需要 0(Q.N) 時間。

範例

#include <bits/stdc++.h>
using namespace std;
int isPallindrome(string str){
   int i, length;
   int flag = 0;
   length = str.length();
   for(i=0;i < length ;i++){
      if(str[i] != str[length-i-1]) {
         flag = 1; break;
      }
   }
   if (flag==1)
      return 1;
   return 0;
}
void solveAllQueries(string str, int Q, int query[][2]){
   for(int i = 0; i < Q; i++){
      isPallindrome(str.substr(query[i][0] - 1, query[i][1] - 1))? cout<<"Palindrome\n":cout<<"Not palindrome!\n";
   }
}
int main() {
   string str = "abccbeba"; int Q = 3;
   int query[Q][2] = {{3, 5}, {5, 7}, {2, 1}};
   solveAllQueries(str, Q, query);
   return 0;
}
登入後複製

輸出

Palindrome
Palindrome
Not palindrome!
登入後複製

動態規劃方法

使用動態規劃方法來解決問題是有效的選擇。為了解決這個問題,我們需要建立一個 DP 數組,它是一個二維數組,其中包含一個布林值,指示 substring[i...j] 是否是 DP[i][j] 的回文。

將建立此 DP 矩陣,並檢查每個查詢的所有 L-R 值。

範例

#include <bits/stdc++.h>
using namespace std;
void computeDP(int DP[][50], string str){
   int length = str.size();
   int i, j;
   for (i = 0; i < length; i++) {
      for (j = 0; j < length; j++)
         DP[i][j] = 0;
   }
   for (j = 1; j <= length; j++) {
      for (i = 0; i <= length - j; i++) {
         if (j <= 2) {
            if (str[i] == str[i + j - 1])
               DP[i][i + j - 1] = 1;
         }
         else if (str[i] == str[i + j - 1])
            DP[i][i + j - 1] = DP[i + 1][i + j - 2];
      }
   }
}
void solveAllQueries(string str, int Q, int query[][2]){
   int DP[50][50];
   computeDP(DP, str);
   for(int i = 0; i < Q; i++){
      DP[query[i][0] - 1][query[i][1] - 1]?cout
      <<"not palindrome!\n":cout<<"palindrome!\n";
   }
}
int main() {
   string str = "abccbeba"; int Q = 3;
   int query[Q][2] = {{3, 5}, {5, 7}, {2, 1}};
   solveAllQueries(str, Q, query);
   return 0;
}
登入後複製

輸出

palindrome!
not palindrome!
palindrome!
登入後複製

結論

在本教學中,我們學習如何使用 C 程式碼解決回文子字串查詢。我們也可以用java、python和其他語言來寫這段程式碼。這段程式碼是最複雜、最冗長的程式碼之一。回文查詢比常規子字串查詢更難,並且需要非常準確的邏輯。我們希望本教學對您有所幫助。

以上是回文子字串查詢在C++中的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板