码迷,mamicode.com
首页 > 其他好文 > 详细

Valid Palindrome

时间:2014-10-27 20:55:25      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   ar   使用   for   

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.

思路:使用string中erase函数剔除非数字、字母,在判定是否符合条件

        注意++i的位置,erase(i,1)后,应继续从i位置检查,而不应该++i;

        erase()函数用法

code:

bubuko.com,布布扣
class Solution {
public:
    bool isPalindrome(string s) {
        
        for(int i=0;i<s.size();)
        {
            if(!(s[i]>=a&&s[i]<=z||s[i]>=0&&s[i]<=9))
                s.erase(i,1);
            else
                ++i;
        }
        
        for(int i=0,j=s.size()-1;(i<s.size()-1)&&(j>=0);++i,--j)
        {
            if(!(s[i]==s[j]||abs(s[i]-s[j])==32))
                return false;
        }
        
        return true;
    }
};
View Code

 

Valid Palindrome

标签:style   blog   http   io   color   os   ar   使用   for   

原文地址:http://www.cnblogs.com/chengyuz/p/4054975.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!