Added notebook solving the following: Implement a queue with enqueue and dequeue methods using a linked list.

This commit is contained in:
Donne Martin
2015-05-15 06:14:39 -04:00
parent 84dfe5efce
commit 5ea9db57f1
3 changed files with 255 additions and 1 deletions

View File

@@ -30,7 +30,8 @@ Continually updated IPython Notebooks containing coding problems and solutions (
## Stacks and Queues
* [Implement a stack with push, pop, and peek methods using a linked list.](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/stacks-queues/stack.ipynb)
* [Implement a stack with push, pop, and peek methods using a linked list](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/stacks-queues/stack.ipynb)
* [Implement a queue with enqueue and dequeue methods using a linked list](http://nbviewer.ipython.org/github/donnemartin/algorithms-data-structures/blob/master/stacks-queues/queue.ipynb)
## License