From charlesreid1

Revision as of 19:57, 4 June 2017 by Admin (talk | contribs) (Created page with "Basic linked list implementation with Python: https://charlesreid1.com:3000/cs/python/src/master/lists/linked-lists/LinkedList.py Questions that arose from this: * Constructo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Basic linked list implementation with Python: https://charlesreid1.com:3000/cs/python/src/master/lists/linked-lists/LinkedList.py

Questions that arose from this:

  • Constructor overloading
  • Effectively handling exceptions? (best practices)
  • Class organization, protection, etc.? (Node class - private? shared? how?)