raghavddps23 / LearningGo-

Repository to learn the Go programming language while submitting simple solutions!
1 stars 9 forks source link

Add the Queue Data Structure #8

Closed raghavddps23 closed 3 years ago

raghavddps23 commented 3 years ago

Add the Queue Data structure in the Medium Folder. For guide on how to get started, refer to the Stack Data Structure implemented in the Medium Folder

You need to create 2 files

  1. One file implementing all the queue functions - enqueue/dequeue/is Empty/front
  2. Another file using the same Queue written in the previous file.

For understanding how a queue works, refer this article on GeeksForGeeks https://www.geeksforgeeks.org/array-implementation-of-queue-simple/

nazuk27 commented 3 years ago

Please assign this to me.