Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 623 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 623 Bytes

STACKS & QUEUES

Monty 0.98 is a scripting language that is first compiled into Monty byte codes.

It relies on a unique stack, with specific instructions to manipulate it.The goal of this project is to create an interpreter for Monty ByteCodes Files.

Stacks and queues will be heavily used in implementing the interpreter

Learning Objectives

  • What do LIFO & FIFO mean
  • What is a stack and when to use it
  • What is a queue and when to use it
  • What are the common implementations of stacks and queues
  • What are the most common use cases of stacks and queues
  • What is the proper way to use global variables in C