From 52bf99bd0f3497da98e41579321764d7ef050359 Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Tue, 1 Aug 2023 19:36:59 -0700 Subject: [PATCH] Update README.md --- stacks/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stacks/README.md b/stacks/README.md index 928cf65..1da2d50 100644 --- a/stacks/README.md +++ b/stacks/README.md @@ -3,8 +3,8 @@
-* last in, first out structures (LIFO) -* useful in certain recursive algorithms, where you can push temp data as you recurse, and remove them from the (memory or data structure) stack as you backtrace. +* stacks are **last in, first out** structures (LIFO), where the newest element is first one to be removed from the structure. +* stacks are useful in certain recursive algorithms, where you can push temp data as you recurse, and remove them from the (memory or data structure) stack as you backtrace.