+ 3
How to learn algorithms?
I want to learn algorithms and how they work but I don’t know where to start. Any suggestions?
4 Respostas
+ 12
have a look at the idea/way used in algorithm , no need to learn the whole algorithm
//things will become more easy
+ 10
Develop a strong foundation
one of the most important keys to success in learning algorithms is having a strong foundation of Computer Science fundamentals. If you don’t know how to implement a linked list, then it doesn’t matter how many tricks you learn for solving linked list problems.Dedicate yourself to learning all of the fundamental data structures and algorithms.
https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011/index.htm
https://www.youtube.com/watch?v=8mYfZeHtdNc&list=PLxc4gS-_A5VDXUIOPkJkwQKYiT2T1t0I8
Get more coding experience
The key here is simply to get more practice coding, and ideally do so in an environment where you are getting good feedback on your code.
http://www.firsttimersonly.com/
+ 3
+ 2