good resources for getting started with algorithms

770 Views Asked by At

I am reasonably mathematically competent and use algorithms regularly in computing, however I have started reading through 'introduction to algorithms' but find I need to understand a few more basics of algorithms (mathematical symbols, summations etc.) in equations to get maximum out of it.

Can someone suggest resources which might help?

5

There are 5 best solutions below

2
On BEST ANSWER

For a gentle introduction, I suggest the Oreilly book Algorithms in a Nutshell As with most other "nutshell" books, the contents are well organized and it is very readable.

Now, if you want to get more theoretical and in-depth, its hard to find a modern treatise that is more thorough than Introduction to Algorithms by Cormen, et. al.

1
On

I highly recommend the (student run!) course Algorithms at the University of Cambridge. The course website is here. The course is pitched to be understandable by first year undergraduates, and the website includes full lecture notes, video lectures and homework.

1
On

Who is the author of your book "Introduction to algorithms"? Because i read years ago very simple books about algorithms, but anyway the course suggested by Chris Taylor is a good starting point.

0
On

The Algorithm Design Manual by Skiena is a more advanced book than Introduction to Algorithms, but it does a good job of laying down the fundamentals.

0
On

If you like Python, (a very nice language that lets you do stuff quickly), this python-based algorithm book is a nice choice.