Earlier quoted context omitted.
Or you just use strings (and regexps to process them)!
Now you have two problems.
Advanced Data Structures
81–90 of 148 posts
Re: Advanced Data Structures
#82Earlier quoted context omitted.
I have read the first 50 pages about a 100 times. Does that count? P.S. I have never recommended it to anyone though, I don't recommend books I haven't read all the way through. I will get through TAOCP one day, (it's now on my retirement bucket list, along with learning Sanskrit) but I first need to read through a bunch of Math books forst, so I can get past the 50 page hump.
I wonder, what might be a suitable set of books to read before TAOCP? Might this one suffice: Concrete Mathematics: A Foundation for Computer Science (Knuth et.al.)
What I can say is that "Concrete Mathematics" is a terrific book. It is the best general "math for algorithms" book I have seen. Its exercises are wonderfully picked, with problems at all levels of difficulty and classified neatly into categories. It also discusses topics that for strange reasons are not as widely known as one would expect, even though they are extremely elegant and quite useful. A concrete example of this is the Euler-Maclaurin formula relating sums and integrals.
Re: Advanced Data Structures
#83Re: Advanced Data Structures
#84Earlier quoted context omitted.
As you get into advanced data structures, you often need the gory technical details to make correct decisions about tradeoffs and usage. Succinct data structures, for instance, which are a specific thing and not just a generic adjective, are almost miraculously powerful, but you'd better understand exactly what the preconditions for using them are (which is a fairly mathematical discussion) and what the tradeoffs are…
With that being said, would you agree that in general one does not need to be intimately familiar with these to be a productive, useful software engineer?
But when you need more, it's good to know your options.
In fact I'd say nobody can afford to be intimately familiar with all the various advanced data structures. But most people will, at most, just need to know the things they might need, then go learn about them when they need it, and many won't even need that much.
Re: Advanced Data Structures
#85I never hear anybody mentioning him but Jeff Erickson's 'Algorithms' textbook [1] has some of the most lucid explanations I've come across. CLRS is often times impenetrable and for the times I didn't like its explanation of something I turned to Jeff Erickson's book and it hasn't failed me yet. I'd urge anybody trying to solidify algorithms and data structures to take a look at it. [1] http://jeffe.cs.illinois.edu/te…
"Algorithm design manual" is another my favorite.
I never find CLRS appealing to read other than being used as a textbook in a formal class.
Re: Advanced Data Structures
#86Earlier quoted context omitted.
No but I printed this PDF ( http://jeffe.cs.illinois.edu/teaching/algorithms/everything.... ). 1250 pages. Not sure about the legality of it.
Totally legal! (Just don't sell it for profit.)
Re: Advanced Data Structures
#87I think a lot of programmers have good understanding of many data structures. But I think hashes and dictionaries are still taken for granted. What they really need to think of hashes as many magical black boxes and the hashing function directs which key to go to which magical bucket. :)
Re: Advanced Data Structures
#88I've learned so much and am really impressed with their depth of knowledge and how they are able to convey complex ideas in a very easy to understand way, I can't wait to start the next courses.
Re: Advanced Data Structures
#89I never hear anybody mentioning him but Jeff Erickson's 'Algorithms' textbook [1] has some of the most lucid explanations I've come across. CLRS is often times impenetrable and for the times I didn't like its explanation of something I turned to Jeff Erickson's book and it hasn't failed me yet. I'd urge anybody trying to solidify algorithms and data structures to take a look at it. [1] http://jeffe.cs.illinois.edu/te…
Also, this: http://jeffe.cs.illinois.edu/teaching/pikachu.html
Re: Advanced Data Structures
#90why are these hand drawn diagrams easier for me to understand and remember?