FIFO (first in first out) data structure that is commonly used in bfs.
Three standard operations:
- push: insert at the back
- pop: delete from the front
- front: access the first element without removing it
Search
FIFO (first in first out) data structure that is commonly used in bfs.
Three standard operations: