diff --git a/src/data-structures/queue/assignment-1/README.md b/src/data-structures/queue/assignment-1/README.md new file mode 100644 index 0000000000..62b75736b0 --- /dev/null +++ b/src/data-structures/queue/assignment-1/README.md @@ -0,0 +1,15 @@ +# Assignment 1 + +## Using the queue + +Your first assignment is to use the Queue class to do the following: + +* Construct the queue +* Add up to 5 items to the queue +* Print the contents of the queue +* Print the first element of the queue +* Print the last element of the queue +* Print the total number of elements in the queue without modifying the queue itself + +**IMPORTANT** +In order to accomplish some of the tasks you may need to modify the Queue class :)