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

isAlmostPalindrome

时间:2017-12-13 01:50:31      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:roc   length   arp   col   mos   ever   ret   div   []   

Checks whether a given string is palindrome. Also return true whether it is almost palindrome whith error rate at most one char.
public static bool IsAlmostPalindrome(string word)
        {
            char[] normal = word.ToCharArray();
            char[] reverse = word.ToCharArray();
            Array.Reverse(reverse);
            
            // Manualmente
            //for (int i = normal.Length - 1, j = 0; i >= 0 ; i--, j++)
            //{
            //    reverse[i] = normal[j];
            //}

            int erroCount = 0;
            for (int i = 0; i < normal.Length; i++)
            {
                if (reverse[i] != normal[i])
                    erroCount += 1;                
            }

            if(erroCount > 2)            
                return false;
            
            return true;
        }

  

isAlmostPalindrome

标签:roc   length   arp   col   mos   ever   ret   div   []   

原文地址:http://www.cnblogs.com/apanda009/p/8030475.html

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