Update README.md

This commit is contained in:
marina 2023-08-01 19:36:59 -07:00 committed by GitHub
parent 1ddc83c1ff
commit 52bf99bd0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,8 +3,8 @@
<br>
* 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.
<br>