Last-In-First-Out (LIFO) - Last element added is the first to be removed
| Size: | 0 |
| Top Element: | — |
| Last Operation: | None |
| Is Empty: | Yes |
First-In-First-Out (FIFO) - First element added is the first to be removed
| Size: | 0 |
| Front Element: | — |
| Rear Element: | — |
| Last Operation: | None |
Dynamic data structure with nodes containing data and pointers to next nodes
| Size: | 0 |
| Head Node: | — |
| Tail Node: | — |
| Last Operation: | None |