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

762 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 simply a way to shape something to make it easy doing one certain thing with it.

Say you decide to build a wooden chair: you order the pieces online.

During transportation, minimizing space is required, so it’s likely that the pieces will be placed very tight together.

Once you begin building, you need easy access to the next piece in sequence, so you might spread the pieces around a bit.

After finishing, the chair will need to support the weight of a person, which has been achieved by setting the pieces the right way.

In each stage, the pieces were structured to give an advantage on the current task. As you can imagine, they represent the data being structured as necessary.

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