在 C++ 中用递归函数检查回文字符串
本文将介绍几种在 C++ 中使用递归函数检查回文字符串的方法。
使用递归函数检查回文字符串
递归函数是从函数主体中调用自身的函数。递归方法不是实现回文校验算法的最佳方法。isPalindrome
函数接受三个参数,并返回一个布尔值,以指示所传递的 string
是否是回文。第二个和第三个参数用于存储字符串序列的开始和结束位置。作为第一个条件,我们评估字符串长度是否为 1
,如果是,则函数立即返回一个肯定值。接下来,比较第一个和最后一个字符,如果不相等,则该函数返回 false
。否则,执行将继续检查字符串是否在当前 st
和 en
位置的中间包含更多字符。如果条件评估为真,则使用移位的位置和相同的字符串值进行递归调用。另一方面,错误条件会强制函数返回 true
。
#include <iostream>
#include <string>
using std::cout; using std::endl;
using std::string; using std::cin;
using std::equal; using std::remove;
bool isPalindrome(const string &s, size_t st, size_t en)
{
if (s.length() == 1)
return true;
if (s[st] != s[en-1])
return false;
if (st < en + 1)
return isPalindrome(s, st + 1, en - 1);
return true;
}
int main(){
string s1 = "radar";
string s2 = "Was it a cat I saw";
isPalindrome(s1, 0, s1.length()) ?
cout << "s1 is a palindrome" << endl :
cout << "s1 is not a palindrome" << endl;
isPalindrome(s2, 0, s2.length()) ?
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
请注意,先前的解决方案无法识别包含大小写字母和空格(例如 s2
对象)的回文。因此,我们需要将字符串转换为相同的大小写字母,并删除所有空格以正确找到所有有效回文。std::trasform
算法和 erase-remove
惯用法用于将字符串解析为 isPalindrome
函数的兼容格式。
#include <iostream>
#include <string>
using std::cout; using std::endl;
using std::string; using std::cin;
using std::equal; using std::remove;
bool isPalindrome(const string &s, size_t st, size_t en)
{
if (s.length() == 1)
return true;
if (s[st] != s[en-1])
return false;
if (st < en + 1)
return isPalindrome(s, st + 1, en - 1);
return true;
}
int main(){
string s2 = "Was it a cat I saw";
transform(s2.begin(), s2.end(), s2.begin(),
[](unsigned char c){ return tolower(c); } );
s2.erase(remove(s2.begin(), s2.end(), ' '), s2.end());
isPalindrome(s2, 0, s2.length()) ?
cout << "s2 is a palindrome" << endl :
cout << "s2 is not a palindrome" << endl;
return EXIT_SUCCESS;
}
输出:
s2 is a palindrome
使用 std::equal
算法检查回文字符串
std::equal
是 C++ 标准模板库的一部分,可用于比较范围。因此,由于 string
类具有迭代器接口,我们可以使用 begin
和 rbegin
函数指定其范围。不过请注意,以下 std::equal
重载版本采用三个参数,其中前两个指定第一个范围,而第三个参数表示第二个范围的开始。
#include <iostream>
#include <string>
using std::cout; using std::endl;
using std::string; using std::cin;
using std::equal; using std::remove;
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(s2) ?
cout << "s2 is a palindrome" << endl :
cout << "s2 is not a palindrome" << endl;
return EXIT_SUCCESS;
}
输出:
s2 is a palindrome
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组