This repository holds sample code for a number of classic data structures in Python.
linked_list.py sources:
Wikipedia.org (http://en.wikipedia.org/wiki/Linked_list)
stackoverflow.com (http://stackoverflow.com/questions/280243/python-linked-list)
-Referenced for general idea of how to approach the problem. All code in linked_list.py is mine.
stack.py sources:
Wikipedia.org link offered in instructions