Does anyone know of any good .NET books that focus on algorithmic complexity specifically looking at Big O Notation?

The only book I have found is Data Structures and Algorithms Using C# by Michael McMillan but unfortunately (based on Amazon reviews) this does not appear to be the greatest....

Any other suggestions would be much appreciated! Thanks in advance

link|improve this question

78% accept rate
4  
Does it have to be focused on .NET? This is usually covered in algorithm analysis books. They'll often use pseudocode which you should be able to read and apply to your .NET work. – Jonathon Feb 10 '10 at 23:25
Ideally, yes. I see, and to a degree agree with, the comments made about pseudo-code vs. real code. However, it appears that there are a number of books available in the C/C++ space and that is from a quick glance. While I agree with Jerry's comment that it is easy to get bogged down in irrelevant details, I believe there is a lot to be learned from the impact of the language itself on algorithmic complexity, how inbuilt algorithms work, etc. If there is nothing decent out there I will go with something more generic but I'd like something more specific! – JP. Feb 11 '10 at 3:25
feedback

1 Answer

up vote 2 down vote accepted

If you want a good book on algorithms, you're probably going to have to live with the fact that it ignores anything as ephemeral as .NET. Knuth even goes to some trouble explaining why he chose to invent MIX AL to use for the demonstrations in his books. Others (e.g. Introduction to Algorithms, by Cormen, et al) mostly stick to pseudo-code and leave it at that.

link|improve this answer
1  
In fact, I'd argue that algorithmic complexity is best understood in pseudocode (or a teaching language like MIX). Trying to study complexity in a real-world language is just going to bog you down with irrelevant details. – Tyler McHenry Feb 10 '10 at 23:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.