Eli5: explain data structure from computer science to a non technical person.

738 views

How do I explain what is data structure to someone who has never programmed before?

In: 15

17 Answers

Anonymous 0 Comments

a data structure is a box that holds stuff.

you can choose to just dump everything into the box or you can get all fancy.

how can you make that box fancy? Maybe after you put everything in, it will always give them back to you in the same order you put them in.

Or, maybe it give them back to you in reverse.

what if you wanted to find something in the box fast? well, you’ll need some way to sort and store it better.

Choose a box based on how you want to use/find your items that are stored in the box.

You are viewing 1 out of 17 answers, click here to view all answers.