vimwiki/tech/stack.wiki

17 lines
276 B
Plaintext
Raw Normal View History

2021-09-23 03:33:54 +00:00
= Stack =
First in Last Out container. Think like a stack of plates, you take off the top
first. Really speciallized and great for things like pre/postfix parsing and
like
== Good For ==
* Keeping an order of things added
== Bad For ==
* Everything else
[[algorithms]]