<aside> đź’ˇ

Collection of methods to operate using stacks and queues.

</aside>


What is it?

Uses a Framework Collections Interface to the LIFO (”Last In First Out”), stack, and FIFO (”First In First Out”), queue, logic.


Package

It belongs to the java.util package and it implements the Collections Interface - structuring it.


How does it work?

The stack can store any data type due to it using generic types.


Logic

Last In First Out - LIFO


Code Implementation

data-structures/structures/linked-list at main · Axelvazslima/data-structures


Links

Queue Interface In Java - GeeksforGeeks