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

125. Valid Palindrome【双指针】

时间:2017-03-27 00:28:56      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:ons   排名   正则表达式   数字   ack   调用   ringbuf   nbsp   not   

2017/3/15 21:47:04


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.

 

Subscribe to see which companies asked this question.


思路:判断回文串,利用双指针在两边向中间靠拢,依次判断两边指针指向的字符是否相等。
注意1.只能包含字母或数字;2.统一成大写或小写字母;
版本1 O(n)
  1. publicclassSolution{
  2. publicboolean isPalindrome(String s){
  3. for(int i=0,j=s.length()-1;i<j;)
  4. if(Character.isLetterOrDigit(s.charAt(i))&&Character.isLetterOrDigit(s.charAt(j)))
  5. if(Character.toLowerCase(s.charAt(i))!=Character.toLowerCase(s.charAt(j)))returnfalse;
  6. else{
  7. i++;j--;
  8. }
  9. elseif(!Character.isLetterOrDigit(s.charAt(i))) i++;
  10. elseif(!Character.isLetterOrDigit(s.charAt(j))) j--;
  11. returntrue;
  12. }
  13. }
耗时13ms,排名仅仅中间,toLowerCase函数比较耗时,需要多次调用函数,所以直接判断字符的差是否是32即可(‘0’和‘P‘也是差32~)。
 
版本2  耗时12ms,没多少区别。
  1. publicclassSolution{
  2. publicboolean isPalindrome(String s){
  3. for(int i=0,j=s.length()-1;i<j;)
  4. if(Character.isLetterOrDigit(s.charAt(i))&&Character.isLetterOrDigit(s.charAt(j))){
  5. if(s.charAt(i)== s.charAt(j)||(s.charAt(i)>64&& s.charAt(j)>64&&Math.abs(s.charAt(i)- s.charAt(j))==32)){i++;j--;continue;};
  6. returnfalse;
  7. }
  8. elseif(!Character.isLetterOrDigit(s.charAt(i))) i++;
  9. elseif(!Character.isLetterOrDigit(s.charAt(j))) j--;
  10. returntrue;
  11. }
  12. }
 
版本3  (参考discuss) 利用正则表达式直接过滤非字母数字字符,简化代码。   41ms
  1. publicclassSolution{
  2. publicboolean isPalindrome(String s){
  3. String actual = s.replaceAll("[^A-Za-z0-9]","").toLowerCase();
  4. returnnewStringBuffer(actual).reverse().toString().equals(actual);
  5. }
  6. }
 

125. Valid Palindrome【双指针】

标签:ons   排名   正则表达式   数字   ack   调用   ringbuf   nbsp   not   

原文地址:http://www.cnblogs.com/flyfatty/p/6624794.html

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