【问题标题】:Why does this return -1 when I try to find .IndexOf(a) in the list?为什么当我尝试在列表中查找 .IndexOf(a) 时返回 -1?
【发布时间】:2016-03-10 06:18:02
【问题描述】:
using System;
using System.Collections.Generic;
using System.Numerics;

namespace ConsoleApplication1
{
class Program
{
    static void Main(string[] args)
    {
        int charCount = 0;
        BigInteger a = 0;
        BigInteger b = 1;
        List<BigInteger> list = new List<BigInteger>();
        while(0 != 1)
        {
            list.Add(a);
            BigInteger c = a;   //
            a = b;              // this is the Fibonacci sequence
            b = a + c;          //
            charCount = a.ToString().Length;
            if (charCount >= 1000)
            {
                Console.WriteLine(list.IndexOf(a));
                break;
            }               
        }
    }
}
}

这是为 Euler 项目的第 25 题编写的,您需要在其中找到包含 1000 位数字的斐波那契数列中第一项的索引。

我检查了应用程序,直到写入 list.IndexOf(a)。由于某种原因,它将索引写入为-1。

通过在循环中使用带有 i++ 的整数 i(如下所示),我能够解决问题,但我很好奇为什么返回 -1 而不是索引。

int i = 0;
int charCount = 0;
BigInteger a = 0;
BigInteger b = 1;
while(0 != 1)
{
    i++;
    BigInteger c = a;
    a = b;
    b = a + c;
    charCount = a.ToString().Length;
    string thing = a.ToString();
    if (charCount >= 1000)
    {
        Console.WriteLine(i);
        break;
    }
}

【问题讨论】:

    标签: c# loops for-loop while-loop indexof


    【解决方案1】:
    list.IndexOf(a) // returns -1 if 'a' could not be fount in 'list'
    

    请注意,您在将“a”添加到列表后更改了它,因此当您使用 index of 时,它已经是另一个值。这样它就可以工作了:

        while(0 != 1)
        {
            list.Add(a);
            charCount = a.ToString().Length;
            if (charCount >= 1000)
            {
                Console.WriteLine(list.IndexOf(a));
                break;
            } 
            BigInteger c = a;   //
            a = b;              // this is the Fibonacci sequence
            b = a + c;          //
        }
    

    【讨论】:

    • 哦,这很有道理。不敢相信我错过了,感谢您清除它!
    猜你喜欢
    • 2012-01-25
    • 2017-06-04
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-09-28
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多