From d03f291aa6520139826be0063f95d82d2fbe52ab Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Sat, 19 May 2018 10:24:32 +0300 Subject: [PATCH] Update README. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e462e320..eff9a606 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,11 @@ videos. ## Data Structures +Data structure is a particular way of organizing and storing data in a computer so that it can +be accessed and modified efficiently. More precisely, a data structure is a collection of data +values, the relationships among them, and the functions or operations that can be applied to +the data. + * [Linked List](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/linked-list) * [Queue](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/queue) * [Stack](https://github.com/trekhleb/javascript-algorithms/tree/master/src/data-structures/stack)