diff --git a/client/src/pages/guide/english/computer-science/data-structures/stacks/index.md b/client/src/pages/guide/english/computer-science/data-structures/stacks/index.md index a2db0683df..eb0bbf4af5 100644 --- a/client/src/pages/guide/english/computer-science/data-structures/stacks/index.md +++ b/client/src/pages/guide/english/computer-science/data-structures/stacks/index.md @@ -3,7 +3,7 @@ title: Stacks --- ## Stacks -Stacks is a First In Last Out (FILO) Data Structure. It is a linear data structure. +A stack is a First In Last Out (FILO) Data Structure. It is a linear data structure. You can imagine a stack as the way plates were organized in buffet restaurant. You can only pick the plate at the top otherwise the stack will collapse. Generally, the last item to be inserted will be removed first.