c# – 从集合创建HashSet的最差案例复杂度

前端之家收集整理的这篇文章主要介绍了c# – 从集合创建HashSet的最差案例复杂度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个int值集合,它填充一个HashSet< int>以下列方式 –
var hashSet = new HashSet<int>(myIEnumerable);

假设迭代IEnumerable是O(n),那么创建HashSet< int>以这样的方式?

解决方法

文件实际上指出:

This constructor is an O(n) operation,where n is the number of
elements in the collection parameter.

http://msdn.microsoft.com/en-us/library/bb301504.aspx

原文链接:https://www.f2er.com/csharp/95002.html

猜你在找的C#相关文章