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

[LintCode] 有效回文串

时间:2015-06-28 16:46:14      阅读:298      评论:0      收藏:0      [点我收藏+]

标签:

 1 class Solution {
 2 public:
 3     /**
 4      * @param s A string
 5      * @return Whether the string is a valid palindrome
 6      */
 7     bool isPalindrome(string& s) {
 8         // Write your code here
 9         int left = 0, right = s.length() - 1;
10         while (left < right) {
11             while (left < right && !isdigit(s[left]) && !isLetter(s[left]))
12                 left++;
13             if (left == right) break;
14             while (right > left && !isdigit(s[right]) && !isLetter(s[right]))
15                 right--;
16             if (right == left) break;
17             if (!match(s[left++], s[right--])) return false;
18         }
19         return true;
20     }
21 private:
22     bool isLetter(char s) {
23         return (s >= A && s <= Z) || (s >= a && s <= z);
24     }
25     bool match(char s, char t) {
26         if (isLetter(s) && isLetter(t))
27             return (s == t) || (s - t == 32) || (t - s == 32);
28         return s == t;
29     }
30 };

 

[LintCode] 有效回文串

标签:

原文地址:http://www.cnblogs.com/jcliBlogger/p/4605664.html

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