我有很多HashSet
包含不同的索引异常。HashSet
我根据输入数据将这些哈希集组合成一个大的。出于测试目的,我还移植HashSet
了List
类似物。
HashSet
and的唯一目的List
是从随机数生成中排除索引。
这就是我在 List 的情况下所做的:
list2 = new List<int>();
for (int d = 0; d < list1.Count; d++)
{
if (dicCat4[30].ContainsKey(list1[d]))
{
list2.AddRange(dicCat4[30][list1[d]]);
}
}
rand = 2 * RandString.Next(0 / 2, (dicCat[30].Count) / 2);
while (list2.Contains(rand))
{
rand = 2 * RandString.Next(0 / 2, (dicCat[30].Count) / 2);
}
// action with random
如您所见,所有异常(索引)都使用AddRange()
. 使用Contains()
方法我们检查随机数是否在列表中。
HashSet 也可以进行同样的操作:
excludehash = new HashSet<int>();
for (int d = 0; d < list1.Count; d++)
{
if (dicCat4[30].ContainsKey(list1[d]))
{
excludehash.UnionWith(dicCat3[30][list1[d]]);
}
}
rand = 2 * RandString.Next(0 / 2, (dicCat[30].Count) / 2);
while (excludehash.Contains(rand))
{
rand = 2 * RandString.Next(0 / 2, (dicCat[30].Count) / 2);
}
// action with random
在这种情况下,AddRange()
我不是使用UnionWith()
方法来合并HashSet
索引异常。
奇怪的是,经过数千次迭代 -方法的整体性能List
更好!,但根据许多消息来源HashSet
应该执行得更快。性能分析器显示,最大的性能消耗是 HashSet 的UnionWith()
方法。
我只是好奇-有什么方法可以使HashSet
解决方案更快地执行吗?(我突然想到了一个快速的想法:作为替代方案,我可以Contains(rand)
在每个单独的哈希集上使用,因此跳过UnionWith()
方法)
PS 哈希集和列表检索自:
static Dictionary<int, Dictionary<int, HashSet<int>>> dicCat3;
static Dictionary<int, Dictionary<int, List<int>>> dicCat4;
编辑:核心迭代解决方案
int inter = list1.Count;
int cco = 0;
while (inter != cco)
{
cco = 0;
rand = 2 * RandString.Next(0 / 2, (dicCat[30].Count) / 2);
for (int d = 0; d < list1.Count; d++)
{
if (dicCat4[30].ContainsKey(list1[d]))
{
if (!dicCat3[30]][list1[d]].Contains(rand))
{
cco++;
}
else
{
break;
}
}
else
{
cco++;
}
}
}