Algorithm Deep Dive Computer Science

Basic Problems on Stack Data Structure

This section includes some of the basic programming problems involving arrays.

Implement Queue using Stack Data Structure

Queues are a fundamental data structure that follow the First-In-First-Out FIFO principle. This principle is exactly opposite of Last-In-First-Out LIFO principle on which Stack data structure is based on. While queues can be implemented

TODO:

  • Post fix evaluation