在 C++ 中檢查字串是否為迴文

Jinku Hu 2023年10月12日
  1. 使用 string 複製建構函式與 rbegin/rend 方法來檢查 C++ 中的字串是否為迴文
  2. 使用 std::equal 方法在 C++ 中檢查字串迴文
  3. 使用自定義函式在 C++ 中檢查字串是否是迴文
在 C++ 中檢查字串是否為迴文

本文將為大家講解幾種在 C++ 中如何檢查一個字串是否為迴文的方法。

使用 string 複製建構函式與 rbegin/rend 方法來檢查 C++ 中的字串是否為迴文

string 類物件支援使用運算子 == 進行比較,它可以用來尋找符合迴文模式的字串。由於迴文意味著按相反的順序匹配字元,我們需要用 rbeginrend 迭代器構造一個新的字串物件。其餘的則根據需要在 if 語句中構造。

在下面的例子中,我們宣告瞭兩個字串 - 單字迴文和多字迴文。請注意,儘管帶空格的字串符合定義模式,但它不能將帶有空格的字串作為迴文式檢測。

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl;
using std::equal;
using std::remove;
using std::string;

int main() {
  string s1 = "radar";
  string s2 = "Was it a cat I saw";

  if (s1 == string(s1.rbegin(), s1.rend())) {
    cout << "s1 is a palindrome" << endl;
  } else {
    cout << "s1 is not a palindrome" << endl;
  }

  if (s2 == string(s2.rbegin(), s2.rend())) {
    cout << "s2 is a palindrome" << endl;
  } else {
    cout << "s2 is not a palindrome" << endl;
  }

  return EXIT_SUCCESS;
}

輸出:

s1 is a palindrome
s2 is not a palindrome

使用 std::equal 方法在 C++ 中檢查字串迴文

儘管最後一個實現在單字字串上完成了工作,但它帶來了建立一個物件副本和比較它們的完整範圍的開銷。我們可以利用 std::equal 演算法來比較同一個 string 物件範圍的前半部分和後半部分。std::equal 如果給定的兩個範圍中的元素相等,則返回布林值 true。請注意,函式只需要一個迭代器-s1.rbegin() 用於第二個範圍,因為範圍的結束是以 first2 + (last1 - first1) 計算的。

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl;
using std::equal;
using std::remove;
using std::string;

int main() {
  string s1 = "radar";
  string s2 = "Was it a cat I saw";

  equal(s1.begin(), s1.begin() + s1.size() / 2, s1.rbegin())
      ? cout << "s1 is a palindrome" << endl
      : cout << "s1 is not a palindrome" << endl;

  equal(s2.begin(), s2.begin() + s2.size() / 2, s2.rbegin())
      ? cout << "s2 is a palindrome" << endl
      : cout << "s2 is not a palindrome" << endl;

  return EXIT_SUCCESS;
}

輸出:

s1 is a palindrome
s2 is not a palindrome

使用自定義函式在 C++ 中檢查字串是否是迴文

以前的方法對多字的字串有不足之處,我們可以通過實現一個自定義函式來解決。本例演示了布林函式 checkPalindrome,它接受 string&引數,並將其值儲存在本地 string 變數中。然後用 transform 演算法處理本地物件,將其轉換為小寫字母,並因此用 eras-remove 刪除其中的所有空白字元。最後,我們在 if 語句條件中呼叫 equal 演算法,並返回相應的布林值。不過要注意的是,如果字串是由多位元組字元組成的,這個方法會失敗。因此,應該實現支援所有通用字元編碼方案的小寫轉換方法。

#include <iostream>
#include <string>

using std::cin;
using std::cout;
using std::endl;
using std::equal;
using std::remove;
using std::string;

bool checkPalindrome(string& s) {
  string tmp = s;
  transform(tmp.begin(), tmp.end(), tmp.begin(),
            [](unsigned char c) { return tolower(c); });
  tmp.erase(remove(tmp.begin(), tmp.end(), ' '), tmp.end());

  if (equal(tmp.begin(), tmp.begin() + tmp.size() / 2, tmp.rbegin())) {
    return true;
  } else {
    return false;
  }
}

int main() {
  string s1 = "radar";
  string s2 = "Was it a cat I saw";

  checkPalindrome(s1) ? cout << "s1 is a palindrome" << endl
                      : cout << "s1 is not a palindrome" << endl;

  checkPalindrome(s2) ? cout << "s2 is a palindrome" << endl
                      : cout << "s2 is not a palindrome" << endl;

  return EXIT_SUCCESS;
}

輸出:

s1 is a palindrome
s2 is a palindrome
作者: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

DelftStack.com 創辦人。Jinku 在機器人和汽車行業工作了8多年。他在自動測試、遠端測試及從耐久性測試中創建報告時磨練了自己的程式設計技能。他擁有電氣/ 電子工程背景,但他也擴展了自己的興趣到嵌入式電子、嵌入式程式設計以及前端和後端程式設計。

LinkedIn Facebook

相關文章 - C++ String