gormelof / DataStructures-Queue

A simple example of the Queue

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DataStructures-Queue

A simple example of the Queue

Queue - FIFO (First in First Out)

  • queue[] : create queue
  • maxLength : max queue size
  • last : queue last/end
  • full() : is queue full
  • empty() : is queue empty
  • enqueue() : add to queue employee
  • dequeue() : remove the employee from the queue
  • showQueue() : show queue

About

A simple example of the Queue


Languages

Language:C++ 100.0%