多项式分部

时间:2016-02-09 06:38:35

标签: c# arrays indexoutofboundsexception polynomials

我正在制作一个计算多项式运算的程序,我已经完成了其他操作(+ - *),但是我已经完成了除法,我总是得到这个错误,因为它在代码中显示

static int[] DividePolnomials(int[] pol1, int[] pol2)
{
    int tmp = 0;
    int power_tmp = 0;
    int[] result_tmp;
    int[] result;
    if (pol1.Length > pol2.Length)
    {
        result = new int [pol1.Length];
        result_tmp = new int[pol1.Length];
        for (int i = 0; pol2.Length<=pol1.Length; i++)
        {

            if (pol2[pol2.Length-i-1] == 0) // here is the problem it gives that the index is outside the bounds
            {
                continue;
            }
            else
            {
                tmp = pol1[pol1.Length - i - 1] / pol2[pol2.Length - i - 1];
                power_tmp = (pol1.Length - i - 1) - (pol2.Length - i - 1);
                result[power_tmp] = tmp;
                result_tmp = Multiply(result, pol2);
                pol1 = SubtractPolnomial(pol1, result_tmp);
            }

        }
    }
    else
    {

        result = new int [pol1.Length];
    }
    return result;
}

由于此错误,我还没有完成代码中的所有其他方案,但我想在两个多项式长度等于的情况下得到任何帮助

1 个答案:

答案 0 :(得分:3)

你的i变得大于pol2.Length-1,所以此时你有pol2 [-1],pol2 [-2]等。这在C#中是不允许的。您可以查看下一个声明:

       if ((pol2.Length-i-1 < 0) || (pol2[pol2.Length-i-1] == 0)) 
       {
           continue;
       }

编辑:如果第一个条件为真,则不会评估第二个条件 https://msdn.microsoft.com/en-us/library/6373h346.aspx