当前位置:网站首页>Leetcode 125. Verify palindrome string
Leetcode 125. Verify palindrome string
2022-08-03 20:12:00 【Luna programming】
给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写.
说明:本题中,我们将空字符串定义为有效的回文串.
示例 1:
输入: “A man, a plan, a canal: Panama”
输出: true
解释:“amanaplanacanalpanama” 是回文串
示例 2:
输入: “race a car”
输出: false
解释:“raceacar” 不是回文串
提示:
1 <= s.length <= 2 * 105
字符串 s 由 ASCII 字符组成
思路:
Palindrome judgment string comparison the quick way is:使用双指针来判断.
From the given string2Move to the middle side,If there is a corresponding position in the process of the unequal situation is not a palindrome string,返回false,If each corresponding position equals the character,那么返回true.
Palindrome judgment often use several functions:
- isalpha () :判断一个字符是否为字母,如果是则返回true,否则返回false;
- isdigit () : 判断一个字符是否表示数字,如果是则返回true,否则返回false;
- isalnum () : 判断一个字符是否表示数字或者字母,如果是则返回true,否则返回false;
- islower () : 判断一个字符是否为小写字母,如果是则返回true,否则返回false;
- isupper () : 判断一个字符是否为大写字母,如果是则返回true,否则返回false;
- tolower () : 若字符为字母则转化为小写字母;
- toupper () : 若字符为字母则转化为大写字母;
class Solution {
public:
bool isPalindrome(string s) {
int i=0,j=s.size()-1;
while(i<j){
if(!isalnum(s[i]))
++i;
else if(!isalnum(s[j]))
--j;
else{
if(tolower(s[i])!=tolower(s[j]))
return false;
++i;
--j;
}
}
return true;
}
};
边栏推荐
猜你喜欢
YARN功能介绍、交互流程及调度策略
149. The largest number on a straight line, and check the set
嵌入式分享合集27
tRNA-m5C转运RNA(tRNA)修饰5-甲基胞嘧啶(m5C)|tRNA修饰m1Am2A (2-methyladenosine)
ESP8266-Arduino编程实例-WS2812驱动
李沐动手学深度学习V2-BERT微调和代码实现
Detailed demonstration pytorch framework implementations old photo repair (GPU)
Advantages and Disadvantages of Blind and Buried Via PCB Stacked Via Design
化算力为战力:宁夏中卫的数字化转型启示录
pytorch框架实现老照片修复功能详细演示(GPU版)
随机推荐
机器学习中专业术语的个人理解与总结(纯小白)
Hinton2022年RobotBrains访谈记录
染料修饰核酸RNA|[email protected] 610/[email protected] 594/Alexa 56
JMeter笔记5 |Badboy使用和录制
高并发,你真的理解透彻了吗?
php根据两点经纬度计算距离
Auto.js脚本程序打包
leetcode 268. 丢失的数字(异或!!)
若依集成easyexcel实现excel表格增强
RNA核糖核酸修饰Alexa 568/[email protected] 594/[email prote
MySQL Basics
深入理解JVM-内存结构
leetcode 1837. K 进制表示下的各位数字总和
Detailed steps for tensorflow-gpu2.4.1 installation and configuration
leetcode 899. 有序队列
(十六)51单片机——红外遥控
alicloud3搭建wordpress
极验深知v2分析
Li Mu hands-on learning deep learning V2-BERT fine-tuning and code implementation
ESP8266-Arduino编程实例-BH1750FVI环境光传感器驱动