码迷,mamicode.com
首页 > 编程语言 > 详细

小算法:递归实现回文判断

时间:2014-10-23 16:04:34      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:blog   os   ar   div   on   log   ad   bs   line   

static void Main(string[] args)
        {
            DateTime dt1 = DateTime.Now;

            string text = "abcdedcba";
            bool bYes = Recv(text);
            Console.Write("{0}:{1}回文!", text, bYes ? "是" : "不是");

            DateTime dt2 = DateTime.Now;
            Console.Write("耗时:{0}毫秒", (dt2 - dt1).TotalMilliseconds.ToString());
            Console.ReadLine();
        }

        private static bool Recv(string text)
        {
            string head = text.Substring(0, 1);
            string end = text.Substring(text.Length - 1, 1);
            if (head == end)
            {
                if (text.Length == 1)
                    return true;
                string t = text.Substring(1, text.Length - 2);
                return Recv(t);
            }
            return false;
        }

  

小算法:递归实现回文判断

标签:blog   os   ar   div   on   log   ad   bs   line   

原文地址:http://www.cnblogs.com/PeterJin/p/4045740.html

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