Linked Lists/Python: Difference between revisions
From charlesreid1
(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...") |
No edit summary |
||
| Line 5: | Line 5: | ||
* Effectively handling exceptions? (best practices) | * Effectively handling exceptions? (best practices) | ||
* Class organization, protection, etc.? (Node class - private? shared? how?) | * Class organization, protection, etc.? (Node class - private? shared? how?) | ||
=Flags= | |||
{{DataStructureFlag}} | |||
[[Category:Python]] | |||
[[Category:Linked Lists]] | |||
[[Category:Lists]] | |||
Revision as of 19:57, 4 June 2017
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?)