Data Structures
Why data structures are important?
Why data structures are important?
The most important question that computer scientists think of is how their data is stored in memory (RAM)? Depending upon the design of the data structures searching time, retrieval time, deletion time and also updation time may vary.
We want our data to be accessible fast. That's why we designed various data structures. The most important ones are the following
Stacks and queues
Dictionary [HashMaps / Hash Tables]
Tree
Graphs
Disjoint Sets
What's next if your data structures are strong?
What's next if your data structures are strong?
I'd recommend you to solve as much problems as possible and start with this website algorithms.theroyakash.com to get yourself interview ready.