首页 > 其他 > 详细

LeetCode | Valid Palindrome

时间:2014-02-23 03:52:31      阅读:350      评论:0      收藏:0      [点我收藏+]

题目

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.

分析

可以直接用java的正则匹配去除非字母数字的字符,并将字符串统一为大写或小写,然后首尾两两比较即可。

如果对于java提供的正则匹配性能不满意,可以自己实现,主要是两个细节:非字母数字的过滤、大小写转换。

代码

public class ValidPalindrome {
	public boolean isPalindrome(String s) {
		if (s == null) {
			return true;
		}
		s = s.replaceAll("[^a-zA-Z0-9]", "").toLowerCase();
		int i = 0, j = s.length() - 1;
		while (i <= j) {
			if (s.charAt(i++) != s.charAt(j--)) {
				return false;
			}
		}
		return true;
	}
}


LeetCode | Valid Palindrome

原文:http://blog.csdn.net/perfect8886/article/details/19674843

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!