0
How essential is Algorithms and Data structures to Programming??
will algorithms & data structures , better the way you code or problem you're trying to solve?
5 Respuestas
+ 2
They help you to write efficient code and solve problems in optimal or near-optimal ways. Without them, you will be reinventing the wheel - not always successfully. also, they help you structure your code, so that it can be maintained more easily by encouraging a better design or implementation.
+ 2
To put it in simple terms, Algorithm is the set of rules or process you use while solving a problem which is a must if your are solving a problem
Data structure on the other hand, helps you optimize your code, meaning that it helps you maintain the effectiveness, consumption of memory etc of your program
both are quite useful in programming
+ 1
Data Structures
and
Program Design
in C++
Robert L. Kruse
follow this book for data structure ...helpful :)
+ 1
there are fine videos on YouTube if you prefer that
0
Thank you both for answering my question , is there any material on the internet or books you reccomend , in which one should read (in terms of Algorithms & data structures)...??