473,395 Members | 1,623 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

How does LINQ exploit sorted collections?

Some collections are such that efficient search algorithms work on them
such as binary search if the collection is a type which is sorted.

I'm wondering how LINQ searches these collections and if it takes
advantage of the fact that some collections are sorted?

We were speculating that the standard .net 2.0 collections might
implement the IQueryable interface for those collections where there
are more efficient search algorithms.

What would seem awful is if it searched through all objects only by
iteration, which would always be a sequential search.

I did try a Google but didn't come up with anything relevant, so please
don't flame me if you found something. Just because my choice of
keywords may have been bad is no reason to get angry.

Thanks.

Jan 23 '07 #1
5 2616
Hi,

I think LINQ just iterates over the collection. Doesn't it just use
IEnumerable<T(or ICollection<Tif certain methods exist)? - though I
could be wrong.

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in VS IDE)

"WebSnozz" <sh******@cs.fsu.eduwrote in message
news:11*********************@s48g2000cws.googlegro ups.com...
Some collections are such that efficient search algorithms work on them
such as binary search if the collection is a type which is sorted.

I'm wondering how LINQ searches these collections and if it takes
advantage of the fact that some collections are sorted?

We were speculating that the standard .net 2.0 collections might
implement the IQueryable interface for those collections where there
are more efficient search algorithms.

What would seem awful is if it searched through all objects only by
iteration, which would always be a sequential search.

I did try a Google but didn't come up with anything relevant, so please
don't flame me if you found something. Just because my choice of
keywords may have been bad is no reason to get angry.

Thanks.

Jan 23 '07 #2
Hi,

On second thought, what's to stop a LINQ expression from containing an
explicit call to BinarySearch, for example?

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in VS IDE)

"WebSnozz" <sh******@cs.fsu.eduwrote in message
news:11*********************@s48g2000cws.googlegro ups.com...
Some collections are such that efficient search algorithms work on them
such as binary search if the collection is a type which is sorted.

I'm wondering how LINQ searches these collections and if it takes
advantage of the fact that some collections are sorted?

We were speculating that the standard .net 2.0 collections might
implement the IQueryable interface for those collections where there
are more efficient search algorithms.

What would seem awful is if it searched through all objects only by
iteration, which would always be a sequential search.

I did try a Google but didn't come up with anything relevant, so please
don't flame me if you found something. Just because my choice of
keywords may have been bad is no reason to get angry.

Thanks.

Jan 23 '07 #3
What would stop it I think(I say I think cause I don't know much about
LINQ) is that only certain data structures would support BinarySearch,
and LINQ working on any structure that implements IQueryable means that
isn't guaranteed. All LINQ sees(I think) is what is available in
IQueryable and IEnumerable. So it wouldn't know to call BinarySearch,
cause it doesn't know it exists, nor should it. But it would seem
there should be some mechanism that allows the developer of the
collection to specify how the collection is searched.

How much control does the developer have over how IQueryable operates?
If you can create a concrete implementation of IQueryable for the
collection, then inside IQueryable you could write the query executing
code such that it exploits the advantages of the data structure when
doing searches. You'd probably have to evaluate the query being run to
some extent in order to know how to perform the search.

I don't know anything about IQueryable though, so I'm not sure. But if
it is true that IQueryable can be implemented in that way, then the
next question is, does Microsoft write efficient IQueryable
implementations for all of their collections provided through the .net
framework, or do they just iterate through the collection. I guess
only MS staff or someone delving into the MS assemblies would be able
to determine that.

I guess I could read up a bunch on IQueryable and see if that was
possible. But still that wouldn't answer the above regarding how
standard collections implement IQueryable.

Thanks for the replies.

On Jan 23, 5:53 pm, "Dave Sexton" <dave@jwa[remove.this]online.com>
wrote:
Hi,

On second thought, what's to stop a LINQ expression from containing an
explicit call to BinarySearch, for example?

--
Dave Sextonhttp://davesexton.com/bloghttp://www.codeplex.com/DocProject(Sandcastle in VS IDE)

"WebSnozz" <shuma...@cs.fsu.eduwrote in messagenews:11*********************@s48g2000cws.go oglegroups.com...
Some collections are such that efficient search algorithms work on them
such as binary search if the collection is a type which is sorted.
I'm wondering how LINQ searches these collections and if it takes
advantage of the fact that some collections are sorted?
We were speculating that the standard .net 2.0 collections might
implement the IQueryable interface for those collections where there
are more efficient search algorithms.
What would seem awful is if it searched through all objects only by
iteration, which would always be a sequential search.
I did try a Google but didn't come up with anything relevant, so please
don't flame me if you found something. Just because my choice of
keywords may have been bad is no reason to get angry.
Thanks.
Jan 24 '07 #4
Hi,

Yes, that was ignorant. It's been a while since I played around with LINQ
:p

--
Dave Sexton
http://davesexton.com/blog
http://www.codeplex.com/DocProject (Sandcastle in VS IDE)

"WebSnozz" <sh******@cs.fsu.eduwrote in message
news:11**********************@l53g2000cwa.googlegr oups.com...
What would stop it I think(I say I think cause I don't know much about
LINQ) is that only certain data structures would support BinarySearch,
and LINQ working on any structure that implements IQueryable means that
isn't guaranteed. All LINQ sees(I think) is what is available in
IQueryable and IEnumerable. So it wouldn't know to call BinarySearch,
cause it doesn't know it exists, nor should it. But it would seem
there should be some mechanism that allows the developer of the
collection to specify how the collection is searched.

How much control does the developer have over how IQueryable operates?
If you can create a concrete implementation of IQueryable for the
collection, then inside IQueryable you could write the query executing
code such that it exploits the advantages of the data structure when
doing searches. You'd probably have to evaluate the query being run to
some extent in order to know how to perform the search.

I don't know anything about IQueryable though, so I'm not sure. But if
it is true that IQueryable can be implemented in that way, then the
next question is, does Microsoft write efficient IQueryable
implementations for all of their collections provided through the .net
framework, or do they just iterate through the collection. I guess
only MS staff or someone delving into the MS assemblies would be able
to determine that.

I guess I could read up a bunch on IQueryable and see if that was
possible. But still that wouldn't answer the above regarding how
standard collections implement IQueryable.

Thanks for the replies.

On Jan 23, 5:53 pm, "Dave Sexton" <dave@jwa[remove.this]online.com>
wrote:
>Hi,

On second thought, what's to stop a LINQ expression from containing an
explicit call to BinarySearch, for example?

--
Dave
Sextonhttp://davesexton.com/bloghttp://www.codeplex.com/DocProject(Sandcastle
in VS IDE)

"WebSnozz" <shuma...@cs.fsu.eduwrote in
messagenews:11*********************@s48g2000cws.g ooglegroups.com...
Some collections are such that efficient search algorithms work on them
such as binary search if the collection is a type which is sorted.
I'm wondering how LINQ searches these collections and if it takes
advantage of the fact that some collections are sorted?
We were speculating that the standard .net 2.0 collections might
implement the IQueryable interface for those collections where there
are more efficient search algorithms.
What would seem awful is if it searched through all objects only by
iteration, which would always be a sequential search.
I did try a Google but didn't come up with anything relevant, so please
don't flame me if you found something. Just because my choice of
keywords may have been bad is no reason to get angry.
Thanks.

Jan 24 '07 #5
WebSnozz wrote:
Some collections are such that efficient search algorithms work on them
such as binary search if the collection is a type which is sorted.

I'm wondering how LINQ searches these collections and if it takes
advantage of the fact that some collections are sorted?
They would have to implement the appropriate methods and decompose the
predicate to see if it consists only of operators (==, <, etc.) that
work well with the internal structure.
We were speculating that the standard .net 2.0 collections might
implement the IQueryable interface for those collections where there
are more efficient search algorithms.
I can see a possible case for some collections implementing
Where<T>(Expression<Func<T,bool>predicate) and friends (OrderBy,
OrderByDescending), but I'm not sure if the gain would be worth the cost
of implementing them.

We'll know more when it's closer to release.

-- Barry

--
http://barrkel.blogspot.com/
Jan 25 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Peter Olcott | last post by:
Does the 2005 release of Visual Studio provide either STL (the C++ Standard Template Library) or an equivalent for C#? I am most interested in the 2005 C# equivalent of std::vector.
4
by: Olivier Matrot | last post by:
Hello, I'm still using old style strongly typed collections (derived from CollectionBase .NET 1.1) and I would like to be able to query in memory collection with LINQ in the future. I also would...
1
by: Bob Johnson | last post by:
Just wondering if LINQ might be useful and appropriate in the following scenario: I'm writing a Windows Forms app that enables the user to search for a "client account". The client account is...
5
by: =?Utf-8?B?cmF1bGF2aQ==?= | last post by:
linq on objects... want to find if the object exist in its collection if I have a loop searching in the collection foreach (myClass r in collections) { if (r.field01 == type && r.field02...
3
by: Vivien Parlat | last post by:
Hello, I am currently using VB.Net 2008 express. I use linq to perform queries on a database, and I'm using the following link's source to convert those queries into DataTables i can then bind...
9
by: Cirene | last post by:
I'm about to begin a brand new, big, ASP.NET project (using 3.5 .net fw), VS 2008. I'm using MySQL as the backend (customer request.) I have absolutely no experience with LINQ and/or the Entity...
21
by: hrishy | last post by:
Hi Will LINQ be ported to Python ? regards Hrishy
4
by: George | last post by:
I am a bit conservative type and usually give some time for technology to mature before starting to try it. Today my question is Linq. To start using it or not. So here is the voting questions....
1
by: alex21 | last post by:
Ok i am trying to use a Linq query to access a dictionary. public static Dictionary<string, Client> Clients = new Dictionary<string, Client>();Using this Linq query: IEnumerable<Staff> loginquery...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.