2

我正在尝试为http://users.metropolia.fi/~dangm/blog/?p=67上解释的问题实施解决方案。我是 C# 语言的新手。我想使用枚举器和特定条件遍历字典。所以有两个变量 current 和 previous.current 指向字典的第一个元素。previous 指向字典中的前一个元素。而迭代我正在迭代的字典

previous=current;
current.MoveNext();

问题是,当我们第一次遍历整个字典时,前一个点指向字典中的最后一个元素,当前点指向随机键值对 RawVariable(0,0)。但是现在,当我们第二次遍历字典时,我希望当前指向第一个元素在 dictionary.how 我如何使当前点指向具有特定键或值的某些元素

这是我的代码片段

 public void falling_disks(int[] A, int[] B)
    {
        Dictionary<int, int> filledDictionary = filldictionary(d1, A);
        //previous stores the previous element in dictionary
        var previous = filledDictionary .GetEnumerator();
        //current stores next element of previous
        var current = filledDictionary .GetEnumerator();
        current.MoveNext();

        //for each incoming element in array B
        foreach (int ele in B)
        {

            //check if the current key is filled in hashtable h1 that is check if it
            //is already added
            if (!checkifthatvalueisfilled(current.Current.Key))
            {
                //if not check if current value is less than or equal to element
                while ((current.Current.Value >= ele))
                {
                    //assign previous to current
                    previous = current;
                    //move current to next position
                    current.MoveNext();
                }
                listofitemstoremove.Add(previous.Current.Key);

            }
            else
            {
                listofitemstoremove.Add(current.Current.Key);
            }

            foreach (int item in listofitemstoremove)
            {
                if (!(h1.ContainsKey(item)))
                    h1.Add(item, true);
            }

        }
        Console.WriteLine(listofitemstoremove.Capacity);
    }

    public bool checkifthatvalueisfilled(int key)
    {
        if (h1.ContainsValue(h1.ContainsKey(key)) == true)
            return true;
        else return false;
    }

}
4

3 回答 3

0

你的问题很难理解。也许这就是您在循环开始时想要做的事情?

current = h1.GetEnumerator();
current.MoveNext();
于 2013-03-07T04:44:52.640 回答
0

如果我正确理解了您的问题,您将无法做到。枚举器使您可以连续访问集合,这就是重点。您不能突然将其移动到特定元素,而不从一开始就迭代到该元素。

此外,我没有看到使用枚举器的一个很好的理由。如果您需要对算法的先前和当前元素的引用 - 您应该存储它们的键,而不是枚举数。我也很确定这些线

 while ((current.Current.Value >= ele))
            {
                //assign previous to current
                previous = current;
                //move current to next position
                current.MoveNext();
            }

a) 将引发异常,当您到达集合的末尾时 b) 由于您正在分配引用类型,因此无法按预期工作

于 2013-03-07T07:40:34.257 回答
0

我不确定我是否理解你的问题,但也许你想改变这个:

                previous = current;

对此:

                previous.MoveNext();

这样,“以前的”将永远落后于“当前”的一步。如果按照原始代码中的方式分配变量,则只有两个对“当前”对象的引用,然后递增。

于 2013-03-07T08:16:55.037 回答