项目作者: MiguelP4lacios

项目描述 :
Stacks, Queues - LIFO, FIFO interpreter.
高级语言: C
项目地址: git://github.com/MiguelP4lacios/monty.git
创建时间: 2020-05-12T21:31:20Z
项目社区:https://github.com/MiguelP4lacios/monty

开源协议:

下载


0x19. C - Stacks, Queues - LIFO, FIFO

Resources:books:

Read or watch:


Learning Objectives:bulb:

What you should learn from this project:

  • What do LIFO and 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

0. push, pall

  • Implement the push and pall opcodes.

1. pint

  • Implement the pint opcode.

2. pop

  • Implement the pop opcode.

3. swap

  • Implement the swap opcode.

Author