C#遞歸完成回文斷定算法。本站提示廣大學習愛好者:(C#遞歸完成回文斷定算法)文章只能為提供參考,不一定能成為您想要的結果。以下是C#遞歸完成回文斷定算法正文
本文實例講述了C#遞歸完成回文斷定算法,分享給年夜家供年夜家參考。詳細完成辦法以下:
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;
}
願望本文所述對年夜家的C#法式設計有所贊助。