How to improve algorithm skills ?

Hello everyone,
Not a technical question, but

Can you all suggest some really good reads related to coding algorithms ?

Or you can also share how did you improve your coding skills ?

I’m not new to coding but didn’t much used algorithmic approach before.

Thanks.

2 Likes

Please read these links : linkI , LinkII , LINKIII

2 Likes

refer book “Introduction to Algorithms”, written by Cormen and some other guys, is considered Bible on this topic. It contains pretty much all the algorithms, math and data structures you need to know for programming competitions.

Hi
Here are a few things you can try

  1. Implement all the algorithms you’ve learnt in as many ways as possible.

  2. As you said implementation is your main problem, you might be messing up with the corner cases. Be careful with them.

  3. Try to solve codeforces contest archives. Spend some time on each of them and then look into the editorials. This will help a lot if you plan to take ACM ICPC.

  4. You can also try out topcoder algorithm tutorials and contests.

Most people use c++ for competitive coding , so if you are looking forward to it you should make tourself familiar with STL in c++.

Recommended books: Introduction to Algorithm (popularly known as CLRS) bt cormen.

Also read below answers in quora.

\

Hope it helps. Happy Coding.

source: Quora