最快的通用集合是什么?
我有以下场景。我有两个收藏,其中一个缺少一些物品。哪种集合类型能够最快找到丢失的项目并插入它们?
I have the following scenario. I have two collections, one has some items missing. What collection type would be the quickest to find the missing items and insert them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能想查看 HashSet,它有一个名为 UnionWith。
You may want to take a look into HashSet which has a method called UnionWith.
HashSet 是你的朋友:
http://msdn.microsoft.com/en-us/library/bb359438。 ASPX
HashSet is your friend:
http://msdn.microsoft.com/en-us/library/bb359438.aspx
克隆一个没有丢失项目的项目。
Clone the one without items missing.