博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Leecode记录——Valid Palindrome
阅读量:4137 次
发布时间:2019-05-25

本文共 1050 字,大约阅读时间需要 3 分钟。

Palindrome,回文,就是字符串中的字母和数字是中心对称的,像“dad”。

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.

For example,
"A man, a plan, a canal: Panama" is a palindrome.忽略标点符号
"race a car" is not a palindrome.

ave you consider that the string might be empty? This is a good question to ask during an interview.空字符串也算回文,要养成考虑这些问题的习惯,leecode上说 在面试的时候问会加分的吧~

bool isPalindrome(char* s) {

   if (strlen(s) <= 1)//如果是空字符串,或是只有一个字符的字符串,肯定是回文
{
return 1;
}
int left = 0, right = strlen(s) - 1;
while (left < right)
{
while (isdigit(*(s + left)) == 0 && isalpha(*(s + left)) == 0 && left < right)//忽略不是数字和字母的字符,最后一个条件是为了防止 像“.,"的情况

//没有加最后一个条件,且当输入是”.,"时,会发生一个错误debug assertion failed c>=-1 &&c<=255在isctype.c line56

{
left++;
}
while (isdigit(*(s + right)) == 0 && isalpha(*(s + right)) == 0 && left < right)
{
right--;
}
if (*(s + left) != *(s + right) && (*(s + left) - *(s + right)) != 32 && (*(s + right) - *(s + left)) != 32)//后两个条件是因为字母的大小写等同,不知道怎么写更好??
{
return NULL;
}
else
{
left++;
right--;
}
}
return 1; 
}

转载地址:http://uhovi.baihongyu.com/

你可能感兴趣的文章
JDBC核心技术 - 上篇
查看>>
一篇搞懂Java反射机制
查看>>
Single Number II --出现一次的数(重)
查看>>
Palindrome Partitioning --回文切割 深搜(重重)
查看>>
对话周鸿袆:从程序员创业谈起
查看>>
Mysql中下划线问题
查看>>
Xcode 11 报错,提示libstdc++.6 缺失,解决方案
查看>>
idea的安装以及简单使用
查看>>
Windows mysql 安装
查看>>
python循环语句与C语言的区别
查看>>
vue 项目中图片选择路径位置static 或 assets区别
查看>>
vue项目打包后无法运行报错空白页面
查看>>
Vue 解决部署到服务器后或者build之后Element UI图标不显示问题(404错误)
查看>>
element-ui全局自定义主题
查看>>
facebook库runtime.js
查看>>
vue2.* 中 使用socket.io
查看>>
openlayers安装引用
查看>>
js报错显示subString/subStr is not a function
查看>>
高德地图js API实现鼠标悬浮于点标记时弹出信息窗体显示详情,点击点标记放大地图操作
查看>>
初始化VUE项目报错
查看>>