Skip to content

Instantly share code, notes, and snippets.

View r0b1n1sl4m's full-sized avatar

Robin Islam r0b1n1sl4m

View GitHub Profile
/* Queue - Circular Array implementation in C++*/
#include<iostream>
using namespace std;
#define MAX_SIZE 101 //maximum size of the array that will store Queue.
// Creating a class named Queue.
class Queue
{
private:
int A[MAX_SIZE];