博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Valid Palindrome leetcode
阅读量:6225 次
发布时间:2019-06-21

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

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.

Note:

Have you consider that the string might be empty? This is a good question to ask during an interview.

For the purpose of this problem, we define empty string as valid palindrome.

 

 to see which companies asked this question

bool isPalindrome(string s) {    string::iterator iter1 = s.begin();    string::iterator iter2 = s.end() - 1;    while (iter1 <= iter2)    {        if (!isalpha(*iter1) && !isdigit(*iter1)) {            iter1++;            continue;        }                    if (!isalpha(*iter2) && !isdigit(*iter2)) {            iter2--;            continue;        }        char c1 = tolower(*iter1);        char c2 = tolower(*iter2);        if (c1 != c2)            return false;        iter1++;        iter2--;    }    return true;}

转载于:https://www.cnblogs.com/sdlwlxf/p/5096994.html

你可能感兴趣的文章
Myeclipes快捷键
查看>>
我的友情链接
查看>>
ToRPC:一个双向RPC的Python实现
查看>>
我的友情链接
查看>>
nginx在reload时候报错invalid PID number
查看>>
神经网络和深度学习-第二周神经网络基础-第二节:Logistic回归
查看>>
Myeclipse代码提示及如何设置自动提示
查看>>
c/c++中保留两位有效数字
查看>>
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
VS2010远程调试C#程序
查看>>
[MicroPython]TurniBit开发板DIY自动窗帘模拟系统
查看>>
由String类的Split方法所遇到的两个问题
查看>>
Python3.4 12306 2015年3月验证码识别
查看>>
从Handler.post(Runnable r)再一次梳理Android的消息机制(以及handler的内存泄露)
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
JDBC的事务
查看>>
Io流的概述
查看>>
App 卸载记录
查看>>
JavaScript变量和作用域
查看>>