對比List<T>搜索和排序中不同方法的性能
這里我們對LINQ中LIST<T>搜索和排序,在不同的方法下究竟性能有多少差距。希望通過這樣的對比,能讓大家在LINQ的應(yīng)用中能找到最合適的方法。
#T#
***:在.NET 1.1時,我還有很多和我一樣的程序員,都會常用到ArrayList,當(dāng)時要想對這種集合元素進(jìn)行查找,大多會采用for循環(huán)來完成,當(dāng)然也可以采用BinarySearch 方法。但自從有了.NET 2.0以及.NET 3.5后,ArrayList就已經(jīng)很少使用了,大家都認(rèn)為List<T>在性能上要優(yōu)越于ArrayList。既然有了List<T>,有了LINQ,對于LIST<T>集合的查詢就不再單一。我這里列舉三種方法:它們共同完成一件事,在一個Person的集合中,查找編號大于50000的元素。Person類定義如下:
- public class Person
- {
- public string firstName
- { get; set; }
- public string lastName
- { get; set; }
- public int ID
- { get; set; }
- }
先構(gòu)造一個Person的泛型集合。當(dāng)然一般情況下不會有這樣的大集合,但為了比較不同方法的搜索性能,這是有必要的。
- List<Person> list = new List<Person>();
- for (int i = 0; i < 100001; i++)
- {
- Person p = new Person();
- p.firstName = i.ToString() + "firstName";
- p.lastName = i.ToString() + "lastName";
- list.Add(p);
- }
1:List<T>提供的FindAll方式。
- public class FindPerson
- {
- public string firstName;
- public FindPerson(string _firstName)
- { this.firstName = _firstName; }
- public bool PersonPredicate(Person p)
- {
- return p.ID >= 50000;
- }
- }
- Stopwatch sw = new Stopwatch();
- sw.Start();
- List<Person> persons = list.FindAll(new Predicate<Person>(fp.PersonPredicate));
- sw.Stop();
- Response.Write("Find方法搜索用時" + sw.ElapsedMilliseconds.ToString() + "<br/>");
2:傳統(tǒng)的for循環(huán)。
- sw.Start();
- List<Person> newPersons = new List<Person>();
- for (int j = 0; j < list.Count; j++)
- {
- if (list[j].ID >= 50000)
- {
- newPersons.Add(list[j]);
- }
- }
- sw.Stop();
- Response.Write("for循環(huán)搜索用時" + sw.ElapsedMilliseconds.ToString() + "<br/>");
3:LINQ方式查詢。
- sw = new Stopwatch();
- sw.Start();
- var pn = (from m in list
- where m.ID >=50000
- select m).ToList <Person >();
- sw.Stop();
- Response.Write("linq搜索用時" + sw.ElapsedMilliseconds.ToString() + "<br/>");
輸出結(jié)果:雖然用時差不多,但還是傳統(tǒng)的for循環(huán)性能***,盡管寫法上并無新意。FindAll我覺的有一點比較好的就是,如果針對List<Person>有很多種查詢方式,(當(dāng)然實際情況中Person類不會這么簡單),把查詢方式封閉在FindPerson類中比較好,這樣在外部調(diào)用查詢時會非常簡單。如果是其它的方式,也可以封裝,但明顯在代碼結(jié)構(gòu)上要稍差。Linq方式的查詢,在靈活性上我覺的比起前兩種要差一些。
Find方法搜索用時5
for循環(huán)搜索用時4
linq搜索用時6
第二:再來看對List<T>的排序,這里比較List<T>提供的Sort方法和Linq方式的orderby。
1:Sort。這里先寫一個自定義的比較類PersonComparer
- public class PersonComparer : IComparer<Person>
- {
- public int Compare(Person x, Person y)
- {
- return x.ID.CompareTo(y.ID);
- }
- }
排序代碼:
- sw = new Stopwatch();
- sw.Start();
- list.Sort(new PersonComparer());
- sw.Stop();
- Response.Write("Sort排序用時" + sw.ElapsedMilliseconds.ToString() + "<br/>");
2:Linq方式。
- sw = new Stopwatch();
- sw.Start();
- var pn = (from m in list
- orderby m.ID descending
- select m).ToList<Person>();
- sw.Stop();
- Response.Write("linq排序用時" + sw.ElapsedMilliseconds.ToString() + "<br/>");
輸出結(jié)果:在排序上linq還是占有比較大的優(yōu)勢。
Sort排序用時670
linq排序用時195
總結(jié)
對于泛型集合的操作,并不能一味的說某種方式有絕對的優(yōu)勢,需要根據(jù)對應(yīng)的情景來選擇不同的處理方式。有時候最常見的最簡單的也許是性能***的。新技術(shù)當(dāng)然有它的優(yōu)點, Linq提供的排序在性能上就有明顯的優(yōu)勢,但在查詢方面也是最差的,盡管差距不大。
未解問題:
至于為什么for循環(huán)在查詢時性能***,LINQ在排序上為什么性能好,本人并不知道其中原因,如有知道的朋友,請指教。
原文標(biāo)題:List<T>在搜索和排序時采用不同方法的性能比較
鏈接:http://www.cnblogs.com/ASPNET2008/archive/2010/01/20/1652062.html