From charlesreid1

No edit summary
Line 1: Line 1:
The basic types of linked lists:
* Singly linked list - forward links only
* Doubly linked list - forward and backward links at each node
* Circular linked list - end node points to front node, more efficient use of memory
Basic linked list implementation with Python: https://charlesreid1.com:3000/cs/python/src/master/lists/linked-lists/LinkedList.py
Basic linked list implementation with Python: https://charlesreid1.com:3000/cs/python/src/master/lists/linked-lists/LinkedList.py



Revision as of 19:59, 4 June 2017

The basic types of linked lists:

  • Singly linked list - forward links only
  • Doubly linked list - forward and backward links at each node
  • Circular linked list - end node points to front node, more efficient use of memory

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?)



Flags