From charlesreid1

Revision as of 20:02, 4 June 2017 by Admin (talk | contribs) (Created page with "==Notes== ===Interface=== Linked list class implements the following interface: * length * is empty * to string * addFront * addBack * removeFront ===Implementation=== Bas...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Notes

Interface

Linked list class implements the following interface:

  • length
  • is empty
  • to string
  • addFront
  • addBack
  • removeFront

Implementation

Basic implementation, nothing fancy: https://charlesreid1.com:3000/cs/python/src/master/lists/linked-lists/LinkedList.py

Flags