問題の説明:与えられた正の数について、私はすぐ次の回文を見つけなければなりません。例えば:
For 808, output:818
2133, output:2222
私のコードがまったく効率的かどうか、そしてそれはどれくらい効率的か知りたいですか?これは問題を解決するための良い方法ですか?
論理の説明:私はi
数字の左端の位置に設定しj
、右端の位置に基本的に2つの数字を比較しています。私は常に割り当てnum[j]=num[i]
、数が元の値より大きくなるか、小さくなるか、または等しくなるかどうかを追跡します。つまり、j-i==1 or j==i
偶数または奇数の桁数に応じて、数値が大きくなるかどうかを確認し、それに応じて判断します。
編集:数は最大100,000桁の長さになる可能性があります!..それは問題ステートメントの一部だったので、力ずくの方法を避けようとしています。
int LeftNineIndex = 0, RightNineIndex = 0;
bool NumberLesser = false, NumberGreater = false;
string number = Console.ReadLine();
char[] num = number.ToCharArray();
int i, j, x, y;
for (i = 0, j = num.Length - 1; i <= j; i++, j--)
{
char m;
Int32.TryParse(num[i].ToString(),out x);
Int32.TryParse(num[j].ToString(), out y);
if (x > y)
{
NumberGreater = true;
NumberLesser = false;
}
else if (x < y)
{
if (j - i == 1)
{
NumberGreater = true;
NumberLesser = false;
x = x + 1;
Char.TryParse(x.ToString(), out m);
num[i] = m;
}
else
{
NumberGreater = false;
NumberLesser = true;
}
}
if ((j == i && NumberGreater == false) || (j - i == 1 && x == y && NumberGreater == false))
{
if (x != 9) // if the number is 9, then i can't add 1 to it
{
x = x + 1;
Char.TryParse(x.ToString(), out m);
num[i] = m;
}
else
{
if (num.Length != 1)
{
Int32.TryParse(num[LeftNineIndex].ToString(), out x);
Int32.TryParse(num[RightNineIndex].ToString(), out y);
x = x + 1;
Char.TryParse(x.ToString(), out m);
num[LeftNineIndex] = m;
num[RightNineIndex] = m;
}
else
{
// user has entered just '9', in which case I've hard-coded
Console.WriteLine("11");
}
}
}
num[j] = num[i];
if (x != 9) //gives us the index of the number closest to the middle, which is not 9
{
LeftNineIndex = i;
RightNineIndex = j;
}
}
Console.WriteLine(num);