Chuyển đến nội dung chính

C# HashSet Advantages

[ad_1]

A Set data structure was finally added to C# in the .NET Framework 3.5. It is a powerful data structure that makes life a little easier for programmers...

The C# Set is called a HashSet. It is modeled after a math set, meaning that elements must be unique. In other words a Set guarantees that there are no duplicate elements.

Now why create a Set data structure in C# when one could simply check a list before adding an element to see if it already exists? The answer: it is because searching a run-of-the-mill list is slow. A HashSet is fundamentally designed to allow fast searches, making inserts faster.

There are different implementations of Sets. Some make insertion and lookup operations super fast by hashing elements. However that means that the order in which the elements were added is lost. Other implementations preserve the added order at the cost of slower running times.

The HashSet class in C# goes for the second approach, thus preserving the order of elements. It is still much faster than a regular List. Some basic benchmarks showed that HashSet is decently faster when dealing with primary types (int, double, bool, etc.). It is a lot faster when working class objects. So that point is that HashSet is fast.

The only catch of HashSet is that there is no access by indices. To access elements you can either use an enumerator or use the built-in function to convert the HashSet into a List and iterate through that.


[ad_2]

Nhận xét

Bài đăng phổ biến từ blog này

DIY AT HOME - Home Projects +++

[ad_1] Are you a Home Projects kind of guy ... or not? Owning a home means having something to do, fix, repair, renovate, and create and more. In order to ensure that all these jobs get done effectively (and improve the value of your home) it is very important that you learn DIY (do it yourself) and become competent .. Dependent on your degree of profitability home projects can surely save you plenty of money. DIY is a learning process and a little help can often be just what you need to become a "Pro" Everyone needs a "pat on the back" now and again. The successful completion of home projects will obviously instill a sense of pride but better still will have your better half acknowledge your success with pride. I find that outdoor home projects such as building a storage shed may also have the neighbors green with envy. There are many home projects that enhance the value of a home, one of the most important being building a wooden deck. By utilizing the best p...

DIY AT HOME - Business Sales Close Plan - Milestones to Close the Deal***

[ad_1] Being with my feet on the sales ground for 25 years in IT, I can recommend that many steps in the sales process need to be discussed and agreed internally and with the business customer to come to an agreed and signed contract. Following this sales process through a so called 'Sales Close Plan', describes all the necessary milestones that need to be agreed from a resource perspective, internally from a supplier perspective as well as from the business customer resource perspective. This Sales Close Plan will enable you to set upfront the right expectations during the contract negotiation milestones during an enterprise sales process. Discuss with your business customer the close plan and have your customer sign/off the Sales Close Plan on timescales and milestones. If each milestone is finalized confirm this in email to your customer so all expectations and potential road blocks keeps transparent and visible to you as supplier and business customer. 1. Identify the Power...

Wrist Watch Camera DRONE!! Awesome Foldable Nano FPV Drone Review

Wrist watch drone Link - https://goo.gl/U6DQX6 Gearbest August Sale - https://goo.gl/m441qf DJI Phantom 3 Huge Discount - https://goo.gl/JMbRvg ( Coupon Code - DJI3seGB ) DJI Spark Huge Discount - https://goo.gl/gSG5fS ( Coupon code - Spark20 ) Da Heng DH 800 Nano FPV foldable wrist watch camera drone unboxing and review India 2017 | Awesome Foldable nano fpv drone 2017 | Best budget camera drone 2017 | Smallest foldable drone with camera 2017 Thanks for watching my video,hit the thumbs up if you liked it and SUBSCRIBE to my channel for more Awesome content. Don't forget to checkout my other videos. Follow Me On ~ https://twitter.com/Vimal_TRHD https://www.facebook.com/TechReviewHD/ http://google.com/+ VimalChintapatlaTR https://instagram.com/vimal_chintapatla/ Music~Cold Funk - Funkorama by Kevin MacLeod is licensed under a Creative Commons Attribution license ( https://creativecommons.org/licenses/by/4.0/) Source: http://incompetech.com/music/royalty-free/index.html?isrc=USUAN1...