Where are data structures used? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Where are data structures used?

I mean data structures like stack, graph, tree etc. Because many times I wrote programs I did rarely use them, maybe it is because I am not a prof programmer, but I did not see either usage of these structures often in others programs, can anyone explain where are data structures used heavily? By these I do not mean basic data structures like vars and arrays!

24th Jun 2018, 2:58 PM
42126ay
42126ay - avatar
1 Answer
+ 3
many algorithms use them to do things quickly and many programming languages use them under the hood in their standard library, for example list in c++ is a doubly linked list and set is a red/black tree and vector is an dynamic array so if you choose vector or list in your program influences performance
24th Jun 2018, 3:44 PM
Max
Max - avatar