Hey, my nick name is LIFO — Last In First Out 😎😎
1. Standard build-in stack
2. You can make your own stack class using Pointer
3. You can make your own stack class using Array
…
- Vector could be used as a dynamic array safe and sound.
- With vector, we don’t need to do a Dynamically allocating (i.e: new), and free the memory (i.e : delete). It handles automatically.
- We can resize a Dynamically allocating array easily with vector
- Vector could be used as a stack