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

LeetCode 680: Valid Palindromes

时间:2017-09-18 14:46:38      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:div   code   mes   lin   class   string   bsp   int   pre   

class Solution {
    public boolean validPalindrome(String s) {
        int start = 0, end = s.length() - 1;
        boolean found = false;
        while (start < end) {
            if (s.charAt(start) != s.charAt(end)) {
                return isPal(s, start, end - 1) || isPal(s, start + 1, end);
            }
            start++;
            end--;
        }
        return true;
    }
    
    private boolean isPal(String s, int start, int end) {
        while (start < end) {
            if (s.charAt(start) != s.charAt(end)) {
                return false;
            }
            start++;
            end--;
        }
        return true;
    }
}

 

LeetCode 680: Valid Palindromes

标签:div   code   mes   lin   class   string   bsp   int   pre   

原文地址:http://www.cnblogs.com/shuashuashua/p/7542567.html

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