Valid Palindrome II问题及解法

问题描述:

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

示例:

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

问题分析:

题目中说最多除去一个字符,使得剩余的字符能够组成回文串。我们可以根据回文串的性质,使用双指针,两段同时比较,若有不相同的则计数器加一,若计数器的值大于1,我们就可以认定该字符串不能满足题意。


过程详见代码:

class Solution {
public:
    bool validPalindrome(string s) {
        int i = 0, j = s.length() - 1, count = 0;
		int flag = 0;
		while (i < j)
		{
			if (s[i] == s[j])
			{
				i++;
				j--;
			}
			else
			{
				count++;
				if (count > 1) return false;
				if (s[i + 1] != s[j] && s[i] != s[j - 1]) return false;
				if (s[i + 1] == s[j])
				{
					if (j > i + 2 && s[i + 2] != s[j - 1]) flag = 1;
					if (!flag)
					{
						i++;
						continue;
					}

				}
				j--;
				flag = 0;
			}
		}
		return true;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值