I have a homework assignment where I need to build my own queue. My last homework assignment involved building a linked list.
Is a queue nothing more than a linked list that can only add to the front and delete from the end? Can I just copy and paste my linked list code and remove all extra functions besides this?
I've looked into documentation of queue and I see some specific functions such as outputting the front/back of the queue which I also added, but have I pretty much completed the assignment by making a linked list earlier?