reading-notes

This Repo required for Asac labs class 2


Project maintained by ManarAbdelkarim Hosted on GitHub Pages — Theme by mattgraham

Implementation: Stacks and Queues

Stack:

A stack is a data structure that consists of Nodes. Each Node references the next Node in the stack, but does not reference its previous.

Common terminology for a stack is:

Stacks follow these concepts:

Big(O) for Stack Operations:

Stack Operations Algorithms:

Queue

A Queue is a linear structure which follows a particular order in which the operations are performed.

Common terminology for a Queue is:

Queues follow these concepts:

Big(O) for Queue Operations:

Queue Operations Algorithms: