I know its not an online course and its a relatively massive tome, but I'd recommend just working through "Introduction to Algorithms" by Cormen/Leiserston/Rivest/Stein [1].
This book has great explanations and exercises for everything you could want to learn from the basics of sorting and algorithmic design and analysis, to graph algorithms, linear programming, and dynamic programming.
It lacks some degree of depth on more advanced topics, but if you work your way through it and actually implement what you read and do the exercises, you will be more than well enough equipped to take on just about any problem.
The key is going to be to actually implement what you read/learn, I think it might take you a little more time than watching an online course, but in the long run it will give you a much deeper knowledge of the material.
Tim Roughgarden is a fantastic teacher. I personally love his style and speed. He throws in some humor here and there and makes learning a lot of fun. His lectures on graphs are absolutely brilliant.
This same course is available on Coursera as well.
Thanks, I've looked at the syllabus and it seems to be exactly what I'm looking for (Asymptotic analysis, and coverage of the most widely known algorithms).
It's not really a course but I found InterviewBit [0] a great resource. It structures everything around moving from simpler to more complex data structures and algorithms. It's kind of learning by doing lots and lots of questions. You have to complete enough problems in one section to move onto the next.
I spent a hundred hours going through the various tests and it showed the power of functional programming / recursion. The questions that took me much longer than average were the ones where I had a bug and had to track it down. The recursive problems didn't suffer from this, ie I would get the solution pretty much correct first time. This could just have been the questions / my programming style but I found it eye opening.
If your eventual goal after learning the basics is programming questions for interviews, there are a tons of resources like leetcode, interviewbit, geeksforgeeks. I started writing some of the FAQ with explanations here[1], check it out to see if it is of any help for you.
The princeton one on coursera is really great and easy to read. Buy the book and take the course. Sedgewick is my hero.
It doesn't require a lot of math in contrast to the Stanford coursera one. It's much easier for the general person to follow IMO. https://www.coursera.org/learn/algorithms-part1
Is it wise to do any of these courses without taking a course in linear algebra first? I started watching Skiena's algorithm course on youtube recently and he seemed to really emphasize finishing a course in linear algebra before taking any algorithm course. Thoughts?
[+] [-] jfaucett|8 years ago|reply
This book has great explanations and exercises for everything you could want to learn from the basics of sorting and algorithmic design and analysis, to graph algorithms, linear programming, and dynamic programming.
It lacks some degree of depth on more advanced topics, but if you work your way through it and actually implement what you read and do the exercises, you will be more than well enough equipped to take on just about any problem.
The key is going to be to actually implement what you read/learn, I think it might take you a little more time than watching an online course, but in the long run it will give you a much deeper knowledge of the material.
1. https://www.amazon.com/Introduction-Algorithms-Thomas-H-Corm...
[+] [-] zombieprocess|8 years ago|reply
I would recommend The algorithm design manual for more practical purposes. https://www.amazon.com/Algorithm-Design-Manual-Steven-Skiena...
[+] [-] siteshwar|8 years ago|reply
[1] http://videolectures.net/mit6046jf05_introduction_algorithms...
[+] [-] osoba|8 years ago|reply
[+] [-] _asummers|8 years ago|reply
https://ocw.mit.edu/courses/electrical-engineering-and-compu...
[+] [-] sarumpaet|8 years ago|reply
[+] [-] ahamedirshad123|8 years ago|reply
https://lagunita.stanford.edu/courses/course-v1:Engineering+...
https://lagunita.stanford.edu/courses/course-v1:Engineering+...
[+] [-] henrik_w|8 years ago|reply
https://henrikwarne.com/2012/05/08/coursera-algorithms-cours...
https://henrikwarne.com/2013/02/18/coursera-algorithms-cours...
[+] [-] deepGem|8 years ago|reply
This same course is available on Coursera as well.
[+] [-] zabana|8 years ago|reply
[+] [-] aretaic|8 years ago|reply
[+] [-] geritol|8 years ago|reply
[+] [-] icc97|8 years ago|reply
I spent a hundred hours going through the various tests and it showed the power of functional programming / recursion. The questions that took me much longer than average were the ones where I had a bug and had to track it down. The recursive problems didn't suffer from this, ie I would get the solution pretty much correct first time. This could just have been the questions / my programming style but I found it eye opening.
[0]: https://www.interviewbit.com/
[+] [-] vthallam|8 years ago|reply
[1] : http://letstalkalgorithms.com/
[+] [-] ruslanmsv|8 years ago|reply
https://www.coursera.org/specializations/data-structures-alg...
[+] [-] chillytoes|8 years ago|reply
[+] [-] ninjakeyboard|8 years ago|reply
[+] [-] indescions_2018|8 years ago|reply
http://jeffe.cs.illinois.edu/teaching/algorithms/
And for practice, Google Code Jam past problems are quite challenging ;)
https://code.google.com/codejam/
[+] [-] WalterGR|8 years ago|reply
[+] [-] southphillyman|8 years ago|reply
[+] [-] ahamedirshad123|8 years ago|reply
https://www.youtube.com/playlist?list=PLZHQObOWTQDPD3MizzM2x...
[+] [-] metaphyze|8 years ago|reply
[+] [-] 3uclid|8 years ago|reply
[+] [-] henrik_w|8 years ago|reply
[+] [-] anonoholic|8 years ago|reply
https://courses.csail.mit.edu/6.042/spring17/mcs.pdf
[+] [-] zabana|8 years ago|reply
[+] [-] gameguy43|8 years ago|reply
Disclosure: my company made this :)
[+] [-] westurner|8 years ago|reply
Data Structure: https://en.wikipedia.org/wiki/Data_structure
Algorithm:https://en.wikipedia.org/wiki/Algorithm
Big O notation:https://en.wikipedia.org/wiki/Big_O_notation
Big-O Cheatsheet: http://bigocheatsheet.com
Coding Interview University > Data Structures: https://github.com/jwasham/coding-interview-university/blob/...
OSSU: Open Source Society University > Core CS > Core Theory > "Algorithms: Design and Analysis, Part I" [&2] https://github.com/ossu/computer-science/blob/master/README....
"Algorithms, 4th Edition" (2011; Sedgewick, Wayne): https://algs4.cs.princeton.edu/
Complexity Zoo > Petting Zoo (P, NP,): https://complexityzoo.uwaterloo.ca/Petting_Zoo
While perusing awesome-awesomeness [1], I found awesome-algorithms [2] , algovis [3], and awesome-big-o [4].
[1] https://github.com/bayandin/awesome-awesomeness
[2] https://github.com/tayllan/awesome-algorithms
[3] https://github.com/enjalot/algovis
[4] https://github.com/okulbilisim/awesome-big-o
[+] [-] vaibkv|8 years ago|reply
[deleted]