LeetCode#680: Valid Palindrome II

Description

Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome.

Example

Input: "aba"
Output: True
Input: "abca"
Output: True
Explanation: You could delete the character 'c'.

Note

  • The string will only contain lowercase characters a-z. The maximum length of the string is 50000.

Solution

考虑这个测试用例: mlcupuuffuupuculm,当判断到'c' != 'u'的时候,我们要选择究竟是删除’c’还是’u’,因为无论删除哪个字符,下一个要比较的字符都相等,然而再往下就不一定相等了。因此,我们用return isPalindrome(s, i+1, j) || isPalindrome(s, i, j-1);判断分别删除’c’和’u’之后的字符串是否是回文,而在这个判断的过程中,如果再发现有字符不相等,根据题目要求只允许删除一个字符,因此直接返回false。

这种解法有可能第一个字符串就不相等,转而执行isPalindrome(s, i+1, j)时也有可能到最后才判断不相等返回false,这时候由于||再执行isPalindrome(s, i, j-1);,也就是说,整个操作最多扫描数组2 * n次,因此时间复杂度为O(n)。

public class Solution {
    public boolean validPalindrome(String s) {
        int i = 0;
        int j = s.length() - 1;
        while(i < j) {
        	if(s.charAt(i) != s.charAt(j)) 
        		return isPalindrome(s, i+1, j) || isPalindrome(s, i, j-1);
        	i++;
        	j--;
        }
        return true;
    }
    
    private boolean isPalindrome(String s, int i, int j) {
    	while(i < j) {
    		if(s.charAt(i) != s.charAt(j)) return false;
    		i++;
    		j--;
    	}
    	return true;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值