Why data structure is important for programmer ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Why data structure is important for programmer ?

7th Dec 2019, 5:28 AM
Sam
Sam - avatar
2 Answers
+ 2
Martin Taylor With all respect, I should have framed my answer better. Those millions and billions of entries was an example of the google search. Because there are so many entries there and when we try to get a result, it returns in no time. Also arrays, linked list, stack, queue and tree data structures etc. use those 3 operations and are widely used. It is all about how you arrange the data so that you can do the above mentioned efficiently. So sorting comes into picture. I'm sorry if I am wrong, but you answered the question well👍
7th Dec 2019, 12:00 PM
Avinesh
Avinesh - avatar
+ 1
Always remember that there are just these 3 basic operations for which you generally need data structures. 1) Insertion 2) Deletion 3) Retrieval You need to make these process as efficient as you can because you are dealing with data in millions or billions of entries. Also sorting plays a major role.
7th Dec 2019, 6:04 AM
Avinesh
Avinesh - avatar