This Repo consists of Data structures and Algorithms
Before dive into this repo you should know why do we need these concepts. What is Role of DSA in your real life??
β For solving any real-world problem with programming approach we need to follow some steps & strategy. The collection of that steps is Algorithm, whereas a data structure is a way to store and organize data during solving that problem or constructing any software so that it can be used efficiently in terms of time and space, this way Data structure & Algorithms always allow us to write efficient and optimized computer programs.β
STL is standard template library, It is most powerful & useful while doing competitive coding questions Read More.
Problems on Data structure & Algorithms (Competitive coding) Click Here to get into problems sectionβ¦
NOTE : Click on [π] for getting hand written notes on particular topic.
In software development we have two phases:-
Design
Implementation
For designing any kind of software we should have a blueprint for that, i.e we can not develop any software on hit and trial basis.
Algorithm:- Algorithm is step by step procedure do solve any kind of computational problem & It is the core of computer science.
There is certain point about algorithm:-
Algorithm is written at design time.
For writing any effective one should have Proper domain Knowledge.
Algorithm is language independent.
And it is independent of Hardware & OS.
We are doing priori analysis when writing algorithms.
Mainly we are considering Time & Space function. Rather than that we are checking for Network Consumption/Data Transfer, Power consumption and Consumption of CPU Register.
characteristics of Algorithm :-