Algorithms in C# - book recommendation!

A

Anders Borum

Hello!

I'm starting to dive into algorithms in general (sorting, trees etc.) and am
currently reading a book from Robert Sedgewick called "Algorithms in C++,
3rd. Edition" and would like other book recommendations on algorithms,
perhaps less hardcore than this one.

Although very interesting, I realize I need to get a solid foundation before
fully understanding the advanced topic covered in that book and would ask
for recommendations here.

Obviously algorithms are very language agnostic, so I am kind of looking for
the general characteristics and thoughts behind the differenet algorithms
than real C# examples (although that would be perfect).

Thanks in advance!
 
S

Stephen Brooker

Anders said:
Hello!

I'm starting to dive into algorithms in general (sorting, trees etc.) and am
currently reading a book from Robert Sedgewick called "Algorithms in C++,
3rd. Edition" and would like other book recommendations on algorithms,
perhaps less hardcore than this one.

Although very interesting, I realize I need to get a solid foundation before
fully understanding the advanced topic covered in that book and would ask
for recommendations here.

Obviously algorithms are very language agnostic, so I am kind of looking for
the general characteristics and thoughts behind the differenet algorithms
than real C# examples (although that would be perfect).

Thanks in advance!

Found this http://www.brpreiss.com/books/opus6/ here
http://www.techbooksforfree.com/

Haven't really looked at it myself, but it sounds like what you are after.

S.
 
A

Anders Borum

It looks like that online books is what I'm after - simpler than the C++ one
but with in-depth examples in C#. Thanks a lot - looking forward to reading
it this weekend :)
 
P

Peter N Roth

It looks like the majority of algorithms of interest are included
in .NET, and they will be "upgraded" using C# generics "soon".
--
Grace + Peace,
Peter N Roth
Engineering Objects International
http://engineeringobjects.com
Home of Matrix.NET
 
S

Stephen Brooker

Peter said:
It looks like the majority of algorithms of interest are included
in .NET, and they will be "upgraded" using C# generics "soon".

True, but it's always good to read stuff like this and have some
understanding of how the algorithms work in the first place.
 
A

Anders Borum

Agree..

I have to admit that I've been though quite a lot of the code from
mscorlib.dll :)-)), but while code is great, explanatory text along the way
is a great thing. Looks like that online book is quite good actually!

Other book recommendations are still welcome btw.
 
A

Anders Borum

Thanks. I've just ordered a copy - looking forward to reading it during
christmas vacation :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top