将C#数组与其自身进行比较

时间:2018-08-09 02:01:24

标签: c# .net arrays

我正在尝试解决可能很容易的任务,但是我对此非常陌生,也不太想以复杂的方式使用数组。我试图找出两个输入是否每个对应的数字总和为相同的数字(例如123和321、1 + 3 2 + 2和1 + 3都等于4)。

到目前为止,我的代码已将每个输入分解为数组,我可以将这些数组求​​和成第三个数组,但是我无法弄清楚如何对其进行检查。我是否应该打扰第3个数组,并弄清楚如何在循环中检查数组的和?

public static void Main()
{
    Console.Write("\n\n"); //begin user input
    Console.Write("Check whether each cooresponding digit in two intigers sum to the same number or not:\n");
    Console.Write("-------------------------------------------");
    Console.Write("\n\n");
    Console.Write("Input 1st number then hit enter: ");
    string int1 = (Console.ReadLine());//user input 1


    Console.Write("Input 2nd number: ");
    string int2 = (Console.ReadLine());//user input 2

    int[] numbers = new int[int1.ToString().Length]; //changing user inputs to strings for array
    int[] numbers2 = new int[int2.ToString().Length];
    for (int i = 0; i < numbers.Length; i++)
    {
        numbers[i] = int.Parse(int1.Substring(i, 1));//populating arrays
        numbers2[i] = int.Parse(int2.Substring(i, 1));
    }


    int[] numbers3 = new int[numbers.Length];

    for (int i = 0; i < numbers.Length; i++)
    {
        numbers3[i] = (numbers[i] + numbers2[i]);
    }
}

}

2 个答案:

答案 0 :(得分:2)

您可以即时创建收藏夹...

bool isEqual = Console.ReadLine()
                      .ToCharArray()
                      .Select(i => Convert.ToInt32(i.ToString()))
                      .Zip(Console.ReadLine()
                                  .ToCharArray()
                                  .Select(i => Convert.ToInt32(i.ToString())),
                           (i, j) => new
                           {
                               First = i,
                               Second = j,
                               Total = i + j
                           })
                      .GroupBy(x => x.Total)
                      .Count() == 1;

如果所有元素的总和都相同,则输出将等于true。

测试用例:

应该成功

12345
54321

应该失败

12345
55432

要了解上述查询,请将其分为几部分。

// Here I'm just converting a string to an IEnumerable<int>, a collection of integers basically
IEnumerable<int> ints1 = Console.ReadLine()
                                .ToCharArray()
                                .Select(i => Convert.ToInt32(i.ToString()));

IEnumerable<int> ints2 = Console.ReadLine()
                                .ToCharArray()
                                .Select(i => Convert.ToInt32(i.ToString()));

// Zip brings together two arrays and iterates through both at the same time.
// I used an anonymous object to store the original values as well as the calculated ones
var zippedArrays = ints1.Zip(ints2, (i, j) => new
                                    {
                                        First = i,    // original value from ints1
                                        Second = j,   // original values from ints2
                                        Total = i + j // calculated value ints1[x] + ints2[x]
                                    });



// if the totals are [4,4,4], the method below will get rid of the duplicates.
// if the totals are [4,3,5], every element in that array would be returned
// if the totals are [4,4,5], only [4,5] would be returned.
var distinctByTotal = zippedArrays.GroupBy(x => x.Total);

// So what does this tell us? if the returned collection has a total count of 1 item,
// it means that every item in the collection must have had the same total sum
// So we can say that every element is equal if the response of our method == 1.

bool isEqual = distinctByTotal.Count() == 1;

答案 1 :(得分:0)

您已经完成了99%的任务。只需丢掉第三个数组,然后检查最终循环中的每个和。

bool isOK = numbers.Length = numbers2.Length && numbers.Length > 0;
if(isOK)
{
    int expectedSum = numbers[0] + numbers2[0];
    for (int i = 1; i < numbers.Length; i++)
    {
        var sum = (numbers[i] + numbers2[i]);
        if(sum != expectedSum)
        {
            isOK = false;
            break;
        }
    }
}
Console.WriteLine(isOk ? "Good job." : "You got some learning to do.");