记录填充LinkedList和Array所需的时间

时间:2015-10-03 09:20:36

标签: c# arrays sorting linked-list console-application

这个控制台应用程序有点奇怪但有点好笑,如果它有效。首先,我计算用{strong> 4.000.000元素填充LinkedList所需的时间,随机数。然后我在LinkedList中搜索100个随机元素。在此之间我写出了填充和找到元素所花费的时间。

之后,我尝试再次做同样的事情,但是Array。首先填写它,然后寻找100个随机元素。然后我对array进行排序,以查看在未排序和排序array中查找100个随机元素之间的区别。然后再次输入时间。

问题是,在我填充LinkedList并找到LinkedList中的元素后,我开始用循环填充数组。我得到一个无限循环。我真的不知道什么是错误的ATM。

我建议,如果您想提供帮助,请复制我粘贴到此问题中的代码,以便您了解它应该如何查找该计划的所有部分。

代码:

    public static bool sokning(int[] a, int b)
    {
        bool sant = false;
        Random rand = new Random();
        Stopwatch watchFindArray = new Stopwatch();
        Console.Write("Letar efter tal: ");
        watchFindArray.Start();
        int myint = 0;

        for (int iii = 0; iii < a.Length; iii++)
        {
            b = rand.Next();
            Console.Write("#");
            myint = Array.BinarySearch(a, b);

            if (myint < 0)
            {
                sant = false;
            }
            else
            {
                sant = true;
            }
        }
        watchFindArray.Stop();

        if (sant == true)
        {
            Console.WriteLine("\nFann alla element efter " + watchFindArray.Elapsed.TotalSeconds + " sekunder.");
            return true;
        }
        else
        {
            return false;
        }
    }

    public static void körMetod()
    {
        const int MAX = 40000000;
        int[] array = new int[MAX];
        int hittamig2 = 0;
        Random rand2 = new Random();

        Stopwatch watchArray = new Stopwatch();
        Console.WriteLine("\nStartar Array...");
        watchArray.Start();
        Console.Write("Position: ");
        for (int ii = 0; ii < MAX; ii++)
        {
            array[ii] = rand2.Next();
            if (array.Length % 1000000 == 0)
            {
                Console.Write("#");
            }
        }
        watchArray.Stop();
        Console.WriteLine("\nTid: " + watchArray.Elapsed.TotalSeconds + " sekunder att fylla en array.");
        Console.WriteLine("Letar efter tal: ");
        bool sant = sokning(array, hittamig2);


        Console.WriteLine("Sorterar arrayen.");
        Array.Sort(array);
        sant = sokning(array, hittamig2);

        if (sant == false)
        {
            Console.WriteLine("\nHittade inte alla element i arrayen.");
            Console.ReadLine();
        }
        else
        {
            Console.WriteLine("Klar!");
            Console.ReadLine();
        }
    }


    static void Main(string[] args)
    {
        Random rnd = new Random();
        const int MAX = 40000000;
        LinkedList<int> lankadLista = new LinkedList<int>();
        Stopwatch watchLinkedList = new Stopwatch();
        Console.WriteLine("Startar LinkedList...");
        watchLinkedList.Start();
        Console.Write("Position: ");
        for (int i = 0; i < MAX; i++)
        {
            lankadLista.AddLast(rnd.Next());
            if (lankadLista.Count() % 1000000 == 0)
            {
                Console.Write("#");
            }
        }
        watchLinkedList.Stop();
        Console.WriteLine("\nTid: " + watchLinkedList.Elapsed.TotalSeconds + " sekunder att fylla en LinkedList.");
        Stopwatch watchFindLinkedList = new Stopwatch();
        int hittaMig;
        Console.Write("Letar efter tal: ");
        watchFindLinkedList.Start();
        for (int j = 0; j < 100; j++)
        {
            hittaMig = rnd.Next();
            Console.Write("#");
            lankadLista.Find(hittaMig);
        }
        watchFindLinkedList.Stop();
        Console.WriteLine("\nFann alla element efter " +
        watchFindLinkedList.Elapsed.TotalSeconds + " sekunder.");

        Console.ReadLine();

        körMetod();
    }

最诚挚的问候。

2 个答案:

答案 0 :(得分:2)

你不是一个无限循环,问题是它是以下代码:

for (int ii = 0; ii < MAX; ii++)
{
    array[ii] = rand2.Next();
    if (array.Length % 1000000 == 0)
    {
        Console.Write("#");
    }
}

内部条件为array.Length % 1000000 == 0,始终为true,因为初始化时array的大小始终为 40000000

const int MAX = 40000000;
int[] array = new int[MAX];

当您执行array[ii] = rand2.Next();时,您不会更改数组的长度,只需将其中一个单元格设置为等于rand2.Next();的值。

这会导致Console.Write("#");每次迭代中工作,并且还会显着减慢循环。

要解决此问题,只需更改:

if (array.Length % 1000000 == 0)

为:

if (ii % 1000000 == 0)

不希望 每次在数组末尾添加新项目,因为,调整数组的大小每次超级重新分配数组,但你可以使用Array.Resize方法(没有理由这样做)

答案 1 :(得分:0)

我认为你在搜索数组的例程中遇到了很大的问题。 (sokning

只搜索100个元素的代码在哪里?

您似乎正在搜索随机生成的数字达4000万次。只修复Console.Write(“#”)以在每百万点正确写入是不够的。我认为让你认为有一个无限循环的大延迟是在你的代码中,在一个包含4千万个数字的数组中搜索4千万个随机生成的数字

当然这不是很“响应”(考虑到你称这种方法两次)

public static bool sokning(int[] a, int b)
{
    bool sant = false;
    Random rand = new Random();
    Stopwatch watchFindArray = new Stopwatch();
    Console.Write("Letar efter tal: ");
    watchFindArray.Start();
    int myint = 0;

    // Search only 100 numbers like you do in the linked list
    for (int iii = 0; iii < 100; iii++)
    {
        b = rand.Next();
        Console.Write("#");
        myint = Array.BinarySearch(a, b);

        if (myint < 0)
        {
            sant = false;
        }
        else
        {
            sant = true;
        }
    }
    watchFindArray.Stop();

    if (sant == true)
    {
        Console.WriteLine("\nFann alla element efter " + watchFindArray.Elapsed.TotalSeconds + " sekunder.");
        return true;
    }
    else
    {
        return false;
    }
}

还有两个小问题。

为什么在b方法中传递变量sokning?永远不会使用原始值,当您开始循环搜索随机生成的数字时,b变量os会被覆盖。所以我认为你可以删除它

第二个问题是此sokning方法的结果。您在每个循环中将sant变量设置为true或false。所以最新的循环赢了。换句话说,如果最新的循环找到匹配,则返回true或false,否则返回true。如果某些先前的循环具有不同的结果,则sokning的呼叫者完全丢失。